일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 사칙연산
- 써니나타스
- 그리디 알고리즘
- xcz.kr
- Incognito
- cryptography
- Forensics
- php
- Network
- C
- misc
- N0Named
- SuNiNaTas
- 구현
- Python
- 문자열
- Web
- Web Hacking
- HackCTF
- 백준
- 인코그니토
- CTF
- Digital Forensics
- 수학
- Database
- writeup
- MySQL
- wargame
- Text
- 정렬
- Today
- Total
목록전체 글 (439)
보안을 그리다, 훈이
[Baekjoon/Python3] 9339번 마라토너 www.acmicpc.net/problem/9339 9339번: 마라토너 상근이는 마라톤 학원을 운영하고 있다. 학원의 수강생은 총 K명으로, 다가오는 마라톤 대회에 참가하기 위해 연습을 하고 있다. 마라톤 대회가 끝나고, 기록이 6시간 이하인 경우는 마라톤 완주 www.acmicpc.net # 정신없는코드 t = int(input()) for i in range(t): k = int(input()) # 수강생 수 d_nums = {} nums = list(map(int, input().split())) # 수강생 참가번호 n = int(input()) # 참가자 수 best = 360 for i in range(n): a, b, c = map(int..
[Baekjoon/Python3] 9325번 얼마? www.acmicpc.net/problem/9325 9325번: 얼마? 해빈이는 학교를 다니면서 틈틈히 번 돈으로 자동차를 사려고 한다. 자동차에 여러 가지 옵션을 포함시킬 수 있는데 해빈이는 덧셈과 곱셈을 하지 못하기 때문에 친구 태완이에게 도움을 청했 www.acmicpc.net t = int(input()) for i in range(t): op_price = 0 price = int(input()) option = int(input()) for j in range(option): a, b = map(int, input().split()) op_price += a * b print(price + op_price)
[Baekjoon/Python3] 9316번 Hello Judge www.acmicpc.net/problem/9316 9316번: Hello Judge 한 줄에 하나의 Hello World, Judge i! 를 출력한다. www.acmicpc.net for i in range(1, int(input()) + 1): print('Hello World, Judge ' + str(i) + '!')
[Baekjoon/Python3] 9296번 Grading Exams www.acmicpc.net/problem/9296 9296번: Grading Exams The first line of input is the number of test cases that follow. Each test case starts with an integer L (0 < L ≤ 100) representing the number of questions on the exam. The next line contains the answer key, where each question is represented by a single www.acmicpc.net t = int(input()) for i in range(t): l ..
[Baekjoon/Python3] 9243번 파일 완전 삭제 www.acmicpc.net/problem/9243 9243번: 파일 완전 삭제 첫째 줄에 N이 주어진다. (1 ≤ N ≤ 20) 둘째 줄에는 파일을 삭제하기 전에 파일이 있었던 곳의 비트가 주어지고, 셋째 줄에는 삭제한 후에 비트가 주어진다. 비트는 0과 1로만 이루어져 있고, 두 www.acmicpc.net n = int(input()) before = list(map(int, input())) after = list(map(int, input())) if n % 2: for i in range(len(before)): if before[i] == 0: before[i] = 1 else: before[i] = 0 if before == af..
[Baekjoon/Python3] 9095번 1, 2, 3 더하기 www.acmicpc.net/problem/9095 9095번: 1, 2, 3 더하기 각 테스트 케이스마다, n을 1, 2, 3의 합으로 나타내는 방법의 수를 출력한다. www.acmicpc.net n = int(input()) res = [1, 2, 4] for i in range(2, 9): res.append(res[i] + res[i - 1] + res[i - 2]) for i in range(n): num = int(input()) print(res[num - 1])
[Baekjoon/Python3] 9086번 문자열 www.acmicpc.net/problem/9086 9086번: 문자열 입력의 첫 줄에는 테스트 케이스의 개수 T(1 ≤ T ≤ 10)가 주어진다. 각 테스트 케이스는 한 줄에 하나의 문자열이 주어진다. 문자열은 알파벳 A~Z 대문자로 이루어지며 알파벳 사이에 공백은 없으 www.acmicpc.net for i in range(int(input())): s = input() print(s[0] + s[-1])
[Baekjoon/Python3] 9085번 더하기 www.acmicpc.net/problem/9085 9085번: 더하기 입력의 첫 줄에는 테스트 케이스의 개수 T(1 ≤ T ≤ 10)가 주어진다. 각 테스트 케이스는 첫 줄에 자연수의 개수 N(1 ≤ N ≤ 100)이 주어지고, 그 다음 줄에는 N개의 자연수가 주어진다. 각각의 자연 www.acmicpc.net t = int(input()) for i in range(t): nums = [] n = int(input()) nums = sum(list(map(int, input().split()))) print(nums)
[Baekjoon/Python3] 8958번 OX퀴즈 www.acmicpc.net/problem/8958 8958번: OX퀴즈 "OOXXOXXOOO"와 같은 OX퀴즈의 결과가 있다. O는 문제를 맞은 것이고, X는 문제를 틀린 것이다. 문제를 맞은 경우 그 문제의 점수는 그 문제까지 연속된 O의 개수가 된다. 예를 들어, 10번 문제의 점수 www.acmicpc.net N = int(input()) for i in range(N): result = list(input()) cnt = 0 total = 0 for j in result: if j == 'O': cnt += 1 total += cnt else: cnt = 0 print(total)
[Baekjoon/Python3] 8741번 이진수 합 www.acmicpc.net/problem/8741 8741번: 이진수 합 첫째 줄에 이진수로 나타냈을 때, k자리 이하인 모든 자연수의 합을 이진수로 출력한다. www.acmicpc.net import sys k = 2 ** int(sys.stdin.readline()) - 1 print(bin((1 + k) * k // 2)[2:])