일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- CTF
- Forensics
- writeup
- 수학
- 써니나타스
- Python
- Digital Forensics
- HackCTF
- Database
- php
- Network
- 사칙연산
- Web Hacking
- 백준
- Web
- 정렬
- Incognito
- SuNiNaTas
- 인코그니토
- wargame
- cryptography
- 그리디 알고리즘
- C
- 구현
- N0Named
- Text
- 문자열
- xcz.kr
- misc
- MySQL
- Today
- Total
목록백준 (263)
보안을 그리다, 훈이
[Baekjoon/Python3] 5363번 요다 www.acmicpc.net/problem/5363 5363번: 요다 첫째 줄에 문장의 수 N이 주어진다. 둘째 줄부터 N개의 줄에는 각 문장이 주어진다. 문장의 길이는 100글자 이내이다. 단어의 개수는 3개 이상이다. www.acmicpc.net n = int(input()) for i in range(n): string = list(map(str, input().split())) print(*string[2:], *string[:2]) n = int(input()) for i in range(n): string = list(map(str, input().split())) string += string[0:2] del string[0:2] for j ..
[Baekjoon/Python3] 5361번 전투 드로이드 가격 www.acmicpc.net/problem/5361 5361번: 전투 드로이드 가격 각 테스트 케이스 마다, 입력으로 주어진 부품을 모두 구매하는데 필요한 비용을 소수점 둘째 자리까지 출력한다. 달러 표시도 출력해야 한다. 정답은 1억보다 작거나 같다. www.acmicpc.net t = int(input()) for i in range(t): nums = list(map(int, input().split())) print('$%.2f' %(nums[0] * 350.34 + nums[1] * 230.90 + nums[2] * 190.55 + nums[3] * 125.30 + nums[4] * 180.90))
[Baekjoon/Python3] 5355번 화성 수학 www.acmicpc.net/problem/5355 5355번: 화성 수학 겨울 방학에 달에 다녀온 상근이는 여름 방학 때는 화성에 갔다 올 예정이다. (3996번) 화성에서는 지구와는 조금 다른 연산자 @, %, #을 사용한다. @는 3을 곱하고, %는 5를 더하며, #는 7을 빼는 연산 www.acmicpc.net t = int(input()) res = 0 for i in range(t): res = 0 sol = list(input().split()) for j in sol: if j == sol[0]: res += float(j) else: if j == '@': res *= 3 elif j == '%': res += 5 elif j == ..
[Baekjoon/Python3] 5354번 J박스 www.acmicpc.net/problem/5354 5354번: J박스 첫째 줄에 테스트 케이스의 개수가 주어진다. 각 테스트 케이스는 한 줄로 이루어져 있고, 박스의 크기가 주어진다. 박스의 크기는 10보다 작거나 같다. www.acmicpc.net for i in range(int(input())): n = int(input()) if n < 3: for i in range(n): print('#' * n) print() else: print('#' * n) for i in range(n - 2): print('#' + 'J' * (n - 2) + '#') print('#' * n + '\n')
[Baekjoon/Python3] 5347번 LCM www.acmicpc.net/problem/5347 5347번: LCM 첫째 줄에 테스트 케이스의 개수 n이 주어진다. 다음 n개 줄에는 a와 b가 주어진다. a와 b사이에는 공백이 하나 이상 있다. 두 수는 백만보다 작거나 같은 자연수이다. www.acmicpc.net def LCM(a, b): return (a * b) // GCD(a, b) def GCD(a, b): if b % a: return GCD(b % a, a) else: return a n = int(input()) for i in range(n): a, b = map(int, input().split()) print(LCM(a, b))
[Baekjoon/Python3/Text] 5339번 콜센터 www.acmicpc.net/problem/5339 5339번: 콜센터 스타워즈에 등장하는 로봇인 C3PO는 요즘 콜센터에 근무하고 있다. 콜센터에 앉아있는 C3PO를 그리는 프로그램을 작성하시오. www.acmicpc.net [Python3] print(""" /~\\ ( oo| _\=/_ / _ \\ //|/.\|\\\\ || \ / || ============ | | | | | | """) [Text] /~\ ( oo| _\=/_ / _ \ //|/.\|\\ || \ / || ============ | | | | | |
[Baekjoon/Python3/Text] 5338번 마이크로소프트 로고 www.acmicpc.net/problem/5338 5338번: 마이크로소프트 로고 마이크로소프트 로고를 예제 출력처럼 출력하는 프로그램을 작성하시오. www.acmicpc.net [Python3] print(""" _.-;;-._ '-..-'| || | '-..-'|_.-;;-._| '-..-'| || | '-..-'|_.-''-._|""") [Text] _.-;;-._ '-..-'| || | '-..-'|_.-;;-._| '-..-'| || | '-..-'|_.-''-._|
[Baekjoon/Python3] 5337번 웰컴 www.acmicpc.net/problem/5337 5337번: 웰컴 Welcome을 예제 출력처럼 출력하는 프로그램을 작성하시오. www.acmicpc.net print('. . .') print('| | _ | _. _ ._ _ _') print('|/\|(/.|(_.(_)[ | )(/.')
[Baekjoon/Python3] 5218번 알파벳 거리 www.acmicpc.net/problem/5218 5218번: 알파벳 거리 첫째 줄에 테스트 케이스의 수 (= alp.index(x[j]): res.append(alp.index(y[j..
[Baekjoon/Python3] 5086번 배수와 약수 www.acmicpc.net/problem/5086 5086번: 배수와 약수 각 테스트 케이스마다 첫 번째 숫자가 두 번째 숫자의 약수라면 factor를, 배수라면 multiple을, 둘 다 아니라면 neither를 출력한다. www.acmicpc.net a, b = 0, 0 while True: a, b = map(int, input().split()) if a == 0 and b == 0: break else: if b % a == 0: print('factor') elif a % b == 0: print('multiple') else: print('neither')