일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- N0Named
- Database
- CTF
- Network
- wargame
- 써니나타스
- xcz.kr
- 인코그니토
- MySQL
- 구현
- 그리디 알고리즘
- Digital Forensics
- 수학
- 백준
- HackCTF
- Forensics
- 문자열
- cryptography
- php
- SuNiNaTas
- Text
- Python
- Web
- Web Hacking
- C
- 정렬
- 사칙연산
- writeup
- misc
- Incognito
- Today
- Total
목록Programming (336)
보안을 그리다, 훈이
[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:])
[Baekjoon/Python3] 8393번 합 www.acmicpc.net/problem/8393 8393번: 합 n이 주어졌을 때, 1부터 n까지 합을 구하는 프로그램을 작성하시오. www.acmicpc.net n = int(input()) sum = 0 for i in range(n + 1): sum = sum + i print(sum)
[Baekjoon/Python3] 8370번 Plane www.acmicpc.net/problem/8370 8370번: Plane In the first and only line of the standard input there are four integers n1, k1, n2 and k2 (1 ≤ n1, k1, n2, k2 ≤ 1 000), separated by single spaces. www.acmicpc.net n1, k1, n2, k2 = map(int, input().split()) print(n1 * k1 + n2 * k2)