A問題 Sharing Cookies
1 2 3 4 5 |
a,b = map(int, input().split()) if a%3==0 or b%3==0 or (a+b)%3==0: print('Possible') else: print('Impossible') |
B問題 Snake Toy
1 2 3 4 5 6 7 8 |
n,k = map(int, input().split()) l = map(int, input().split()) list = sorted(l,reverse = True) #降順で大きい方から順に並び替えてlistに格納 ans = 0 for i in range(k): ans += list[i] print(ans) |
コメント