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
- 리뷰
- BoB 7기
- Best of the Best
- 10995
- boj
- text
- 11109
- 10833
- 영재교육원
- 5086
- BOB
- 영재원
- EOF
- 2501
- 정보보호 영재교육원
- 5586
- 4101
- 2965
- 차세대 보안 리더 양성
- acmicpc
- 정보보호 영재원
- 2476
- 11943
- BoB 후기
- 2506
- 차세대 보안 리더 양성 프로그램
- 2605
- 공주대 정보보호
- 1547
- Python
Archives
- Today
- Total
목록5618 (1)
짱해커가 되어보자
boj 5618
* Solved 기준 브론즈3 단순 풀이 import sys def gcd(a, b): if(a == 0): return b return gcd(b % a, a) n,l = sys.stdin.readline(),list(map(int, sys.stdin.readline().split())) g = gcd(l[0], l[1] if len(l)==2 else gcd(l[1],l[2])) for i in range(1, (g//2)+1): if not(g%i): print(i) print(g)
프로그래밍_일반/백준
2020. 2. 4. 12:38