結果

問題 No.2370 He ate many cakes
ユーザー とりゐとりゐ
提出日時 2023-07-04 00:15:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 120 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 239,388 KB
最終ジャッジ日時 2024-07-17 21:49:50
合計ジャッジ時間 2,695 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,216 KB
testcase_01 AC 38 ms
52,340 KB
testcase_02 AC 37 ms
52,280 KB
testcase_03 AC 135 ms
155,996 KB
testcase_04 AC 38 ms
52,268 KB
testcase_05 AC 38 ms
52,340 KB
testcase_06 AC 37 ms
52,408 KB
testcase_07 AC 36 ms
52,748 KB
testcase_08 AC 37 ms
52,124 KB
testcase_09 AC 39 ms
51,876 KB
testcase_10 AC 49 ms
69,432 KB
testcase_11 AC 82 ms
100,068 KB
testcase_12 AC 154 ms
179,144 KB
testcase_13 AC 188 ms
227,676 KB
testcase_14 AC 96 ms
115,520 KB
testcase_15 AC 233 ms
239,388 KB
testcase_16 AC 200 ms
237,584 KB
testcase_17 AC 232 ms
239,376 KB
testcase_18 AC 57 ms
75,928 KB
testcase_19 AC 36 ms
52,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
A=[0]
for i in list(map(int,input().split())):A=sorted(A+[j+i for j in A])[-k:]
print(A[0])
0