結果

問題 No.2370 He ate many cakes
ユーザー komkompikomkompi
提出日時 2023-07-08 13:37:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 358 ms / 2,000 ms
コード長 275 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 252,716 KB
最終ジャッジ日時 2024-07-22 09:04:15
合計ジャッジ時間 3,370 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,156 KB
testcase_01 AC 38 ms
53,672 KB
testcase_02 AC 38 ms
52,888 KB
testcase_03 AC 171 ms
190,344 KB
testcase_04 AC 35 ms
52,372 KB
testcase_05 AC 35 ms
52,864 KB
testcase_06 AC 36 ms
53,916 KB
testcase_07 AC 36 ms
52,732 KB
testcase_08 AC 37 ms
51,956 KB
testcase_09 AC 36 ms
52,072 KB
testcase_10 AC 53 ms
77,780 KB
testcase_11 AC 97 ms
119,700 KB
testcase_12 AC 206 ms
235,552 KB
testcase_13 AC 274 ms
252,716 KB
testcase_14 AC 112 ms
137,652 KB
testcase_15 AC 358 ms
251,656 KB
testcase_16 AC 297 ms
252,308 KB
testcase_17 AC 337 ms
250,524 KB
testcase_18 AC 63 ms
88,628 KB
testcase_19 AC 37 ms
52,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!

N,K=map(int,input().split())

A=list(map(int,input().split()))

solves=[0]

for a in A:
    temp=[]
    for solve in solves:
        temp.append(solve-a)
    
    solves+=temp
    
    solves.sort()
    solves=solves[:K]

print(-solves[-1])
0