일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Web
- C
- 수학
- Python
- N0Named
- 사칙연산
- 구현
- Network
- 써니나타스
- xcz.kr
- CTF
- Database
- 백준
- wargame
- Text
- MySQL
- php
- 인코그니토
- cryptography
- 정렬
- writeup
- Digital Forensics
- misc
- 그리디 알고리즘
- 문자열
- Incognito
- SuNiNaTas
- HackCTF
- Web Hacking
- Today
- Total
목록사칙연산 (99)
보안을 그리다, 훈이
[Baekjoon/Python3] 16394번 홍익대학교 www.acmicpc.net/problem/16394 16394번: 홍익대학교 입력으로 첫 줄에 특정 년도를 알리는 정수 N이 주어진다. 정수 N은 1,946 부터 1,000,000 사이의 값이다. (1,946 ≤ N ≤ 1,000,000) www.acmicpc.net 홍익대학교는 1946년에 개교하였고, 특정 년도가 주어졌을 때, 그 해가 개교 몇 주년인지 출력하라고 한다. (특정 년도 - 1946)를 출력하면 되므로, 다음 코드로 해결했다. print('%d' %(int(input()) - 1946))
[Baekjoon/Python3] 15781번 헬멧과 조끼 www.acmicpc.net/problem/15781 15781번: 헬멧과 조끼 입력의 첫째 줄에 맵에 존재하는 헬멧의 개수 N(N은 1000이하의 자연수)과 조끼의 개수 M(M은 1000이하의 자연수)이 주어진다. 둘째 줄에 각 헬멧의 방어력 h[i] (h[i]는 10억 이하의 자연수)가 N개 만큼 www.acmicpc.net n, m = map(int, input().split()) n_dfs = list(map(int, input().split())) m_dfs = list(map(int, input().split())) print(max(n_dfs) + max(m_dfs))
[Baekjoon/Python3] 15740번 A+B - 9 www.acmicpc.net/problem/15740 15740번: A+B - 9 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. www.acmicpc.net a, b = map(int, input().split()) print(a + b)
[Baekjoon/Python3] 15727번 조별과제를 하려는데 조장이 사라졌다 www.acmicpc.net/problem/15727 15727번: 조별과제를 하려는데 조장이 사라졌다 3학년 1학기를 재학 중인 성우는 ‘빨간눈 초파리의 뒷다리 털의 개수와 파인애플 껍질의 이해’라는 과목을 수강 중이다. 기말고사를 맞이하여 교수님은 수강생들에게 조별과제를 내주었고, www.acmicpc.net import math l = float(input()) print(int(math.ceil(l / 5)))
[Baekjoon/Python3] 15596번 정수 N개의 합 www.acmicpc.net/problem/15596 15596번: 정수 N개의 합 C++17, Java 8, Python 3, C11, PyPy3, C99, C++98, C++11, C++14, Python 2, PyPy2, Go, C99 (Clang), C++98 (Clang), C++11 (Clang), C++14 (Clang), C11 (Clang), C++17 (Clang) www.acmicpc.net def solve(a): return sum(a)
[Baekjoon/Python3] 15552번 빠른 A+B www.acmicpc.net/problem/15552 15552번: 빠른 A+B 첫 줄에 테스트케이스의 개수 T가 주어진다. T는 최대 1,000,000이다. 다음 T줄에는 각각 두 정수 A와 B가 주어진다. A와 B는 1 이상, 1,000 이하이다. www.acmicpc.net import sys T = int(input()) for i in range(T): A, B = map(int, sys.stdin.readline().split()) print(A + B)
[Baekjoon/Python3] 15439번 Vera and Outfits www.acmicpc.net/problem/15439 15439번: Vera and Outfits Vera owns N tops and N pants. The i-th top and i-th pants have colour i, for 1 ≤ i ≤ N, where all N colours are different from each other. An outfit consists of one top and one pants. Vera likes outfits where the top and pants are not the same colour. www.acmicpc.net n = int(input()) print(n * (n - ..
[Baekjoon/Python3] 14918번 더하기 www.acmicpc.net/problem/14918 14918번: 더하기 a b; a와 b는 -100,000과 100,000 사이의 정수이다. www.acmicpc.net import sys a, b = map(int, sys.stdin.readline().split()) print(a + b)
[Baekjoon/Python3] 14652번 나는 행복합니다~ www.acmicpc.net/problem/14652 14652번: 나는 행복합니다~ 첫째 줄에 관중석의 크기를 나타내는 N, M과 잃어버린 관중석 번호를 나타내는 K가 주어진다. (1