| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 4101
- text
- 정보보호 영재원
- 영재원
- Best of the Best
- 5586
- Python
- 2506
- 10995
- EOF
- 11109
- 차세대 보안 리더 양성
- 11943
- 공주대 정보보호
- 1547
- 리뷰
- BOB
- 2605
- 영재교육원
- 2965
- 차세대 보안 리더 양성 프로그램
- 2476
- BoB 7기
- acmicpc
- boj
- 정보보호 영재교육원
- 2501
- BoB 후기
- 5086
- 10833
- Today
- Total
목록분류 전체보기 (385)
짱해커가 되어보자
* Solved 기준 브론즈3 단순 풀이 def cc(l): return 1 if l[2] < l[1]+l[0] else 0 for i in range(int(input())): a,b,c = map(int, input().split()) print('Case #{}: {}'.format(i+1, 'invalid!' if not cc(sorted([a,b,c])) else 'equilateral' if a==b==c else 'isosceles' if a==b or b==c or a==c else 'scalene')) * 5073번과 거의 똑같다
* Solved 기준 브론즈3 단순 풀이 n,m = map(int, input().split()); c=n while(n): n //= m; c += n print(c)
* Solved 기준 브론즈3 단순 풀이 for _ in range(int(input())): n,m = map(int, input().split()) print(-1 if m
* Solved 기준 브론즈3 단순 풀이 while True: try: p,h = map(int, input().split()) print('{:.2f}'.format(p/h)) except EOFError: break
* Solved 기준 브론즈3 단순 풀이 a,b,c = map(int, input().split()) print(a^(b if c%2 else 0))
* Solved 기준 브론즈3 단순 풀이 from sys import stdin l = [2**i for i in range(0,32)] for _ in range(int(stdin.readline())): print(1 if int(stdin.readline()) in l else 0)
* Solved 기준 브론즈3 단순 풀이 a,b=map(int,input().split()) r,n=str(a//b)+'.',a%b for i in range(1000): n *= 10; m = n//b r += str(m);n %= b if not(n): break print(r)
* Solved 기준 브론즈3 단순 풀이 a,b,c,x,y = map(int, input().split()) print(min(a*x+b*y,(x*2*c)+(y-x)*b if x
* Solved 기준 브론즈3 단순 풀이 i=1 while True: a,b,c = map(int, input().split()) if (a,b,c)==(0,0,0): break print('Triangle #{}'.format(i)); i+=1 if(a==-1): print('Impossible.' if c**2-b**2