Python158 백준 - 11004 K번째 수 n, k = map(int, input().split()) a = list(map(int, input().split())) a.sort() print(a[k-1]) 2022. 10. 21. 백준 - 2839 # 내 풀이 오류 n = int(input()) count = 0 etc = n % 5 if n % 5 == 0: count = n // 5 print(count) elif etc % 3 == 0: count = n // 5 count += (etc // 3) print(count) elif n % 3 == 0: count = n // 3 print(count) else: print("!") # 다른 사람의 풀이 num = int(input()) count = 0 while num >= 0: if num % 5 == 0: count += int(num // 5) print(count) break num -= 3 count += 1 else: print(-1) 2022. 10. 19. 백준 - 3053 택시 기하학 import math r=int(input()) print(r*r*math.pi) print(r*r*2) 2022. 10. 18. 프로그래머스 - 하샤드 수 def solution(x): a = list(str(x)) count = 0 for i in a: count += int(i) if x % count == 0: answer = True else: answer = False return answer 2022. 10. 17. 이전 1 2 3 4 5 6 7 ··· 40 다음