일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Forensics
- 정렬
- HackCTF
- php
- MySQL
- C
- 써니나타스
- Incognito
- N0Named
- cryptography
- 사칙연산
- 문자열
- 그리디 알고리즘
- Digital Forensics
- xcz.kr
- Web Hacking
- Network
- wargame
- 백준
- 구현
- Python
- SuNiNaTas
- writeup
- 수학
- CTF
- Database
- 인코그니토
- misc
- Text
- Web
- Today
- Total
목록구현 (150)
보안을 그리다, 훈이
[Baekjoon/Python3] 9366번 삼각형 분류 www.acmicpc.net/problem/9366 9366번: 삼각형 분류 입력의 첫 줄에는 테스트케이스의 개수 T(1
[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] 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] 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] 7568번 덩치 www.acmicpc.net/problem/7568 7568번: 덩치 우리는 사람의 덩치를 키와 몸무게, 이 두 개의 값으로 표현하여 그 등수를 매겨보려고 한다. 어떤 사람의 몸무게가 x kg이고 키가 y cm라면 이 사람의 덩치는 (x,y)로 표시된다. 두 사람 A 와 B의 덩 www.acmicpc.net # brute force n = int(input()) info = [] for i in range(n): kg, cm = map(int, input().split()) info.append((kg, cm)) for i in info: rank = 1 for j in info: if i[0] < j[0] and i[1] < j[1]: rank += 1..