일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 차세대 보안 리더 양성 프로그램
- 10833
- 11109
- 1547
- boj
- 리뷰
- BoB 7기
- 4101
- acmicpc
- 10995
- text
- 2506
- 공주대 정보보호
- 영재원
- EOF
- Best of the Best
- 2605
- 11943
- 영재교육원
- 차세대 보안 리더 양성
- BoB 후기
- 정보보호 영재교육원
- Python
- 5086
- 정보보호 영재원
- 2965
- 2476
- BOB
- 5586
- 2501
- Today
- Total
목록Python (182)
짱해커가 되어보자
* Solved 기준 브론즈2 단순 풀이 n = input() print(sum([n.count(i) for i in ['a','e','i','o','u']]))
* Solved 기준 브론즈2 단순 풀이 n,f = int(input()[:-2]+'00'), int(input()) print('{:02d}'.format((f-n%f) if n%f else 0))
* Solved 기준 브론즈2 단순 풀이 a,b = input().split() print(int(a.replace('6','5'))+int(b.replace('6','5')), int(a.replace('5','6'))+int(b.replace('5','6')))
* Solved 기준 브론즈2 단순 풀이 print(oct(int(input(),2))[2:])
* Solved 기준 브론즈2 단순 풀이 s,p = 0,0 for i in input(): s += 10 if i!=p else 5 p = i print(s)
* Solved 기준 브론즈3 단순 풀이 l = [list(map(int,input().split())) for _ in range(3)] for i in range(100): p,n = i%3, (i+1)%3 over = l[p][1]+l[n][1]-l[n][0] if l[n][0] < l[p][1]+l[n][1] else 0 l[n][1] += l[p][1] - over l[p][1] = over for i in l: print(i[1])
* Solved 기준 브론즈3 단순 풀이 l,r,a = map(int, input().split()) while a: if(l
* Solved 기준 브론즈3 단순 풀이 r,c = int(input()), int(input()) for _ in range(r): print('*'*c)
* Solved 기준 브론즈3 단순 풀이 while True: a,b,c,d = map(int, input().split()); p = 0 if (a,b,c,d)==(0,0,0,0): break while True: if(a==b==c==d): break a,b,c,d = abs(a-b),abs(b-c),abs(c-d),abs(d-a); p+=1 print(p)