일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Web
- wargame
- N0Named
- SuNiNaTas
- C
- cryptography
- 그리디 알고리즘
- Forensics
- Digital Forensics
- Python
- 써니나타스
- php
- 사칙연산
- 구현
- CTF
- 인코그니토
- misc
- 문자열
- 수학
- xcz.kr
- Network
- writeup
- 백준
- Incognito
- MySQL
- Database
- 정렬
- Web Hacking
- HackCTF
- Text
- Today
- Total
목록백준 (263)
보안을 그리다, 훈이
[Baekjoon/Python3] 9610번 사분면 www.acmicpc.net/problem/9610 9610번: 사분면 2차원 좌표 상의 여러 점의 좌표 (x,y)가 주어졌을 때, 각 사분면과 축에 점이 몇 개 있는지 구하는 프로그램을 작성하시오. www.acmicpc.net n = int(input()) q1, q2, q3, q4, axis = 0, 0, 0, 0, 0 for i in range(n): a, b = map(int, input().split()) if a > 0 and b > 0: q1 += 1 elif a 0: q2 += 1 elif a 0 and b < 0: q4 += 1 else: axis += 1 p..
[Baekjoon/Python3] 9550번 아이들은 사탕을 좋아해 www.acmicpc.net/problem/9550 9550번: 아이들은 사탕을 좋아해 각 테스트 케이스마다 생일파티에 최대 몇 명의 아이들이 참석할 수 있는지 하나의 정수로 출력한다. www.acmicpc.net t = int(input()) for i in range(t): candy = [] t = 0 n, k = map(int, input().split()) candy = list(map(int, input().split())) for j in candy: t += j // k print(t)
[Baekjoon/Python3] 9501번 꿍의 우주여행 www.acmicpc.net/problem/9501 9501번: 꿍의 우주여행 꿍은 우주여행을 하고 싶어져서 우주여행을 계획하기 시작했다. 몇 가지를 고려해본 결과 우주여행에는 우주선의 연료와 목적지까지의 도착시간이 가장 큰 영향을 미치는것으로 파악됐다. 꿍 www.acmicpc.net t = int(input()) for i in range(t): n, d = map(int, input().split()) cnt = 0 for i in range(n): v, f, c = map(int, input().split()) if v * (f / c) >= d: cnt += 1 print(cnt)
[Baekjoon/Python3] 9498번 시험 성적 www.acmicpc.net/problem/9498 9498번: 시험 성적 시험 점수를 입력받아 90 ~ 100점은 A, 80 ~ 89점은 B, 70 ~ 79점은 C, 60 ~ 69점은 D, 나머지 점수는 F를 출력하는 프로그램을 작성하시오. www.acmicpc.net A = int(input()) if(90
[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] 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..