結果

問題 No.1046 Fruits Rush
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-31 11:07:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 141 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 53,916 KB
最終ジャッジ日時 2024-08-31 11:07:22
合計ジャッジ時間 1,583 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,488 KB
testcase_01 AC 38 ms
53,472 KB
testcase_02 AC 35 ms
52,924 KB
testcase_03 AC 36 ms
52,328 KB
testcase_04 AC 37 ms
52,068 KB
testcase_05 AC 36 ms
52,464 KB
testcase_06 AC 35 ms
53,364 KB
testcase_07 AC 37 ms
53,032 KB
testcase_08 AC 38 ms
53,076 KB
testcase_09 AC 38 ms
52,372 KB
testcase_10 AC 36 ms
52,368 KB
testcase_11 AC 36 ms
53,300 KB
testcase_12 AC 37 ms
53,816 KB
testcase_13 AC 37 ms
53,560 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=list(map(int,input().split()))
a.sort()
c=0
for i in range(n):
	if a[~i]>0 and k>0:
		c+=a[~i]
		k-=1
print(c)
0