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
- 차세대 보안 리더 양성 프로그램
- 영재원
- text
- BoB 후기
- 정보보호 영재교육원
- BoB 7기
- 10833
- 2965
- 차세대 보안 리더 양성
- 2605
- 10995
- 리뷰
- BOB
- 2476
- 1547
- acmicpc
- Python
- 11109
- 5586
- 영재교육원
- 공주대 정보보호
- 5086
- 4101
- 11943
- 정보보호 영재원
- Best of the Best
- 2501
- boj
- 2506
- EOF
Archives
- Today
- Total
짱해커가 되어보자
boj 1964
* Solved 기준 브론즈4 단순 풀이 n, l = int(input()), [5, 7] for i in range(1, n-1): l.append(l[i]+3) print(sum(l[:n]) % 45678)
프로그래밍_일반/백준
2020. 1. 29. 07:28
boj 10101
* Solved 기준 브론즈4 단순 풀이 t = [int(input()) for _ in range(3)] if(sum(t) != 180): print('Error') elif(max(t)-min(t) == 0): print('Equilateral') elif(t[0] != t[1] and t[1] != t[2] and t[0] != t[2]): print('Scalene') else: print('Isosceles')
프로그래밍_일반/백준
2020. 1. 29. 07:27