6kittylog
close
프로필 사진

6kittylog

github: @6kitty

  • 분류 전체보기 (260)
    • proj (4) N
      • ARM analysis (2)
      • 한이음: PBM (0)
      • 한이음: Quant (0)
      • CJ security wave (2) N
    • security: study (61)
      • web: dreamhack (11)
      • Bug hunting (2)
      • pwn: dreamhack (38)
      • cryptohack (3)
      • 시큐어코딩 (5)
      • tool (2)
    • wargame (51)
      • dreamhack (18)
      • CodeEngn (2)
      • picoCTF (3)
      • Root-me (1)
      • pwnable.kr (2)
      • webhacking.kr (6)
      • mobilehacking.kr (0)
      • ctf+ (15)
      • 아직 푸는중 (˃̣̣̥᷄ ̯ ˂̣̣̥᷅ ◦) (4)
    • WHS 4th (1)
      • infra (1)
    • SWING (51)
      • forensic (24)
      • web hacking (11)
      • reversing (12)
      • cpp study (3)
      • 우녕진 ꒰๑ᴖ o ᴖ๑꒱ (1)
    • CS (6)
      • computer (1)
      • linux (3)
      • windows (2)
    • 최신동향 (8)
      • 뉴스 스터디 (4)
      • vul (2)
      • 개인정보보호 (2)
    • dev (8)
    • work (3)
    • AX (2)
    • coding (53)
      • 바킹독 (13)
      • baekjoon: python (4)
      • baekjoon: cpp (12)
      • CryptoZombies (2)
      • 프로그래머스 알고리즘 고득점 kit : cpp (20)
      • + (2)
    • 일기 (12)
  • 홈
  • 태그
  • 방명록

[CPP] 백준 27866 문자와 문자열

#include #include using namespace std; int main() { string s; cin>>s; int i; cin>>i; i--; cout

  • format_list_bulleted coding/baekjoon: cpp
  • · 2024. 1. 8.

[PY] 백준 1157 단어 공부

n=input().lower() nlist=list(set(n)) #중복 없음 cnt=[] for i in nlist: c=n.count(i) cnt.append(c) if cnt.count(max(cnt)) >1: print("?") else: print(nlist[(cnt.index(max(cnt)))].upper())

  • format_list_bulleted coding/baekjoon: python
  • · 2024. 1. 7.

[PY] 백준 25206 너의 평점은

a=['']*20 b=[0]*20 c=[0]*20 cnt=0 for i in range(20): a[i],e,f=input().split() b[i]=float(e) if f=='P': b[i]=0 continue if f=='F': c[i]=0 cnt+=1 continue list(f) c[i]=4-(ord(f[0])%65) if f[1]=='+': c[i]+=0.5 c[i]*=b[i] print(sum(c)/sum(b))

  • format_list_bulleted coding/baekjoon: python
  • · 2024. 1. 7.

[CPP] 백준 2444 별 찍기 - 7

#include #include using namespace std; int main() { int N; cin>>N; string ar; int M=1; int Q=4; for(int s=0;s

  • format_list_bulleted coding/baekjoon: cpp
  • · 2024. 1. 6.

[CPP] 백준 3003 킹, 퀸, 룩, 비숍, 나이트, 폰

동혁이는 오래된 창고를 뒤지다가 낡은 체스판과 피스를 발견했다. 체스판의 먼지를 털어내고 걸레로 닦으니 그럭저럭 쓸만한 체스판이 되었다. 하지만, 검정색 피스는 모두 있었으나, 흰색 피스는 개수가 올바르지 않았다. 체스는 총 16개의 피스를 사용하며, 킹 1개, 퀸 1개, 룩 2개, 비숍 2개, 나이트 2개, 폰 8개로 구성되어 있다. 동혁이가 발견한 흰색 피스의 개수가 주어졌을 때, 몇 개를 더하거나 빼야 올바른 세트가 되는지 구하는 프로그램을 작성하시오. #include using namespace std; int main() { int h[6]; cin>>h[0]>>h[1]>>h[2]>>h[3]>>h[4]>>h[5]; int w[6]]={1,1,2,2,2,8}; for(int t=0;t

  • format_list_bulleted coding/baekjoon: cpp
  • · 2024. 1. 6.

[CPP] 백준 1546 평균

세준이는 기말고사를 망쳤다. 세준이는 점수를 조작해서 집에 가져가기로 했다. 일단 세준이는 자기 점수 중에 최댓값을 골랐다. 이 값을 M이라고 한다. 그리고 나서 모든 점수를 점수/M*100으로 고쳤다. 예를 들어, 세준이의 최고점이 70이고, 수학점수가 50이었으면 수학점수는 50/70*100이 되어 71.43점이 된다. 세준이의 성적을 위의 방법대로 새로 계산했을 때, 새로운 평균을 구하는 프로그램을 작성하시오. #include #include #include #include using namespace std; int main() { //입력 int N; cin>>N; double arr[1001]; //둘째줄 입력 for(int i = 0; i > arr[i]; } ..

  • format_list_bulleted coding/baekjoon: cpp
  • · 2024. 1. 6.
  • navigate_before
  • 1
  • ···
  • 5
  • 6
  • 7
  • 8
  • 9
  • navigate_next
공지사항
전체 카테고리
  • 분류 전체보기 (260)
    • proj (4) N
      • ARM analysis (2)
      • 한이음: PBM (0)
      • 한이음: Quant (0)
      • CJ security wave (2) N
    • security: study (61)
      • web: dreamhack (11)
      • Bug hunting (2)
      • pwn: dreamhack (38)
      • cryptohack (3)
      • 시큐어코딩 (5)
      • tool (2)
    • wargame (51)
      • dreamhack (18)
      • CodeEngn (2)
      • picoCTF (3)
      • Root-me (1)
      • pwnable.kr (2)
      • webhacking.kr (6)
      • mobilehacking.kr (0)
      • ctf+ (15)
      • 아직 푸는중 (˃̣̣̥᷄ ̯ ˂̣̣̥᷅ ◦) (4)
    • WHS 4th (1)
      • infra (1)
    • SWING (51)
      • forensic (24)
      • web hacking (11)
      • reversing (12)
      • cpp study (3)
      • 우녕진 ꒰๑ᴖ o ᴖ๑꒱ (1)
    • CS (6)
      • computer (1)
      • linux (3)
      • windows (2)
    • 최신동향 (8)
      • 뉴스 스터디 (4)
      • vul (2)
      • 개인정보보호 (2)
    • dev (8)
    • work (3)
    • AX (2)
    • coding (53)
      • 바킹독 (13)
      • baekjoon: python (4)
      • baekjoon: cpp (12)
      • CryptoZombies (2)
      • 프로그래머스 알고리즘 고득점 kit : cpp (20)
      • + (2)
    • 일기 (12)
인기 글
전체 방문자
오늘
어제
Copyright © 육키티 모든 권리 보유.
SKIN: Copyright © 쭈미로운 생활 All rights reserved. Designed by JJuum.
and Current skin "dev-roo" is modified by Jin.

티스토리툴바