일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 구현
- 사칙연산
- cryptography
- 그리디 알고리즘
- C
- php
- MySQL
- Web Hacking
- writeup
- Web
- Digital Forensics
- 백준
- Incognito
- 문자열
- misc
- Network
- Python
- HackCTF
- Text
- wargame
- 정렬
- SuNiNaTas
- 수학
- Database
- 써니나타스
- N0Named
- xcz.kr
- 인코그니토
- CTF
- Forensics
- Today
- Total
목록수학 (138)
보안을 그리다, 훈이
[Baekjoon/Python3] 16673번 고려대학교에는 공식 와인이 있다 www.acmicpc.net/problem/16673 16673번: 고려대학교에는 공식 와인이 있다 첫 번째 줄에 수빈이가 와인을 모은 년수, 수빈이의 고려대 애착 정도, 수빈이의 구매중독 정도를 의미하는 정수 C, K, P가 공백으로 구분되어 주어진다. (0 ≤ C ≤ 100, 0 ≤ K ≤ 1000, 0 ≤ P ≤ 1 www.acmicpc.net c, k, p = map(int, input().split()) total = 0 for i in range(1, c + 1): wine = k * i + p * pow(i, 2) total += wine print(total)
[Baekjoon/Python3] 16430번 제리와 톰 www.acmicpc.net/problem/16430 16430번: 제리와 톰 첫 번째 줄에 두 정수 A, B (1 ≤ A
[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] 16204번 카드 뽑기 www.acmicpc.net/problem/16204 16204번: 카드 뽑기 첫째 줄에 N, M, K가 주어진다. (1 ≤ N ≤ 1,000,000, 0 ≤ M, K ≤ N) www.acmicpc.net n, m, k = map(int, input().split()) print(min(m, k) + min(n - m, n - k))
[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 - ..