[백준][Python] 16206 롤케이크 나눠 떨어지는 경우와 아닌경우를 나눠 카운팅해주면 된다. import sys input = sys.stdin.readline N, M = map(int, input().split()) cakes = list(map(int, input().split())) cakes.sort(key=lambda x: (x%10,x)) cake_cnt = 0 for cake in cakes: cnt = cake//10 if not cake%10: if cnt-1 practivceAlgorithm/백준 2021.08.16