일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 2605
- 11109
- 2965
- 4101
- Python
- 차세대 보안 리더 양성 프로그램
- acmicpc
- 2501
- 영재원
- 차세대 보안 리더 양성
- boj
- 2476
- 5586
- 5086
- 공주대 정보보호
- 10833
- 11943
- BoB 7기
- 정보보호 영재교육원
- 리뷰
- 2506
- BOB
- text
- 10995
- 영재교육원
- Best of the Best
- EOF
- 1547
- 정보보호 영재원
- BoB 후기
- Today
- Total
목록프로그래밍_일반/백준 (356)
짱해커가 되어보자
* Solved 기준 브론즈2 단순 풀이 input(); s=0 for i in input(): s += ord(i)-64 print(s)
* Solved 기준 브론즈2 단순 풀이 p,r=-1000001,True for i in map(int, input().split()): if(i
* Solved 기준 브론즈2 단순 풀이 n,k = map(int,input().split()); m=0 for i in range(1,k+1): v = int(str(n*i)[::-1]) if(v>m): m=v print(m)
* Solved 기준 브론즈2 단순 풀이 l = [int(input()) for _ in range(int(input()))] p,c=0,0 for i in l: if(i>p): c+=1; p=i print(c) p,c=0,0 for i in l[::-1]: if(i>p): c+=1; p=i print(c)
* Solved 기준 브론즈2 단순 풀이 for _ in range(int(input())): c,r = input().split('=') print('correct' if eval(c)==int(r) else 'wrong answer')
* Solved 기준 브론즈2 단순 풀이 a,b = map(list, input().split()); s='' while a or b: x,y = a.pop() if a else '0', b.pop() if b else '0' s += str(int(x)+int(y))[::-1] print(s[::-1])
* Solved 기준 브론즈2 단순 풀이 for _ in range(int(input())): s = list(input().split()) print(*s[2:],*s[:2])
* Solved 기준 브론즈2 단순 풀이 for _ in range(int(input())): s = input() print('skipped' if s=='P=NP' else eval(s))
* Solved 기준 브론즈2 단순 풀이 n,m = map(int, input().split()); l = [0]*n for _ in range(m): a,b = map(int, input().split()) l[a-1] += 1; l[b-1] += 1 print(*l, sep='\n')