목록Note (462)
Note
[codeup] 95. 수 나열하기1
a,d,n = map(int, input().split()) print(a+d*(n-1))
etc/Coding Test
2021. 12. 25. 14:50
[codeup] 94. 3의 배수는 통과
n = int(input()) for i in range(1, n+1) : if i%3==0 : continue print(i, end=' ')
etc/Coding Test
2021. 12. 24. 18:22
[codeup] 93. 거기까지! 이제 그만~
n = int(input()) a = 0 b = 0 while True: a+=b b+=1 if a>=n: break print(a)
etc/Coding Test
2021. 12. 23. 21:14
[codeup] 92. 소리 파일 저장용량 계산하기
h,b,c,s = map(int, input().split()) sum = (h*b*c*s)/8/2**20 print("%.1f MB" %(sum))
etc/Coding Test
2021. 12. 22. 19:45