結果

問題 No.2370 He ate many cakes
ユーザー とりゐとりゐ
提出日時 2023-07-04 00:09:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 361 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 228,020 KB
最終ジャッジ日時 2024-07-17 21:44:33
合計ジャッジ時間 2,903 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,888 KB
testcase_01 AC 39 ms
52,900 KB
testcase_02 AC 39 ms
52,948 KB
testcase_03 AC 143 ms
128,884 KB
testcase_04 AC 38 ms
52,528 KB
testcase_05 AC 39 ms
53,216 KB
testcase_06 AC 37 ms
52,464 KB
testcase_07 AC 37 ms
52,964 KB
testcase_08 AC 38 ms
51,944 KB
testcase_09 AC 38 ms
52,000 KB
testcase_10 AC 47 ms
65,536 KB
testcase_11 AC 74 ms
85,844 KB
testcase_12 AC 138 ms
140,940 KB
testcase_13 AC 176 ms
175,736 KB
testcase_14 AC 92 ms
98,460 KB
testcase_15 AC 279 ms
227,464 KB
testcase_16 AC 361 ms
228,020 KB
testcase_17 AC 223 ms
222,244 KB
testcase_18 AC 56 ms
69,768 KB
testcase_19 AC 38 ms
52,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=list(map(int,input().split()))
a.sort(reverse=True)
tmp=[0]
for i in a:
  tmp+=[j+i for j in tmp]
  tmp.sort(reverse=True)
  tmp=tmp[:k]
print(tmp[-1])
0