Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- C
- 써니나타스
- 정렬
- Network
- Incognito
- MySQL
- N0Named
- Text
- Forensics
- CTF
- writeup
- Digital Forensics
- Python
- HackCTF
- 백준
- Web
- xcz.kr
- wargame
- Database
- 그리디 알고리즘
- 구현
- misc
- 문자열
- Web Hacking
- php
- 사칙연산
- 수학
- cryptography
- 인코그니토
- SuNiNaTas
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 3036번 링 본문
[Baekjoon/Python3] 3036번 링
# 2Πr
def gcd(a, b):
if b % a:
return gcd(b % a, a)
else:
return a
n = int(input())
rs = list(map(int, input().split()))
for i in range(1, n):
g = gcd(rs[0], rs[i])
print('{0}/{1}'.format(rs[0] // g, rs[i] // g))
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 3047번 ABC (0) | 2020.12.04 |
---|---|
[Baekjoon/Python3] 3046번 R2 (0) | 2020.12.04 |
[Baekjoon/Python3] 3035번 스캐너 (0) | 2020.12.04 |
[Baekjoon/Python3] 3009번 네 번째 점 (0) | 2020.12.04 |
[Baekjoon/Python3] 2965번 캥거루 세마리 (0) | 2020.12.04 |
Comments