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
- 영재원
- boj
- 영재교육원
- Best of the Best
- 10995
- 10833
- 2476
- BoB 후기
- 2501
- BOB
- 1547
- 2506
- 2605
- 5086
- 리뷰
- 2965
- 11109
- 5586
- 정보보호 영재원
- acmicpc
- 정보보호 영재교육원
- Python
- 차세대 보안 리더 양성 프로그램
- EOF
- 공주대 정보보호
- BoB 7기
- 4101
- text
- 차세대 보안 리더 양성
- 11943
Archives
- Today
- Total
목록EOF (5)
짱해커가 되어보자
boj 10823
* Solved 기준 브론즈2 단순 풀이 from sys import stdin s = '' for n in stdin.readlines(): s += n.replace('\n','') print(sum(map(int,s.split(','))))
프로그래밍_일반/백준
2020. 3. 4. 08:25
boj 1673
* Solved 기준 브론즈2 단순 풀이 import sys while True: i = sys.stdin.readline() if not(i): break n,k = map(int, i.split()); s=n while n//k: s,n = s+n//k, n//k+n%k print(s)
프로그래밍_일반/백준
2020. 3. 3. 09:53
boj 1371
* Solved 기준 브론즈2 단순 풀이 import sys l = [0]*26 while True: n = sys.stdin.readline() if not(n): break for c in n: if(ord(c)!=10 and ord(c)!=32): l[ord(c)-97] += 1 for i in range(0,26): print(chr(i+97) if l[i]==max(l) else '', end='')
프로그래밍_일반/백준
2020. 2. 26. 09:33
boj 10820
* Solved 기준 브론즈2 단순 풀이 import sys while True: n = sys.stdin.readline() if not(n): break s,d,c,b = 0,0,0,0 for i in n: i = ord(i) if(i==32): b+=1 elif(i>=48 and i=65 and i=97 and i
프로그래밍_일반/백준
2020. 2. 16. 11:16