結果

問題 No.1046 Fruits Rush
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-31 11:08:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 132 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 53,080 KB
最終ジャッジ日時 2024-08-31 11:08:49
合計ジャッジ時間 2,032 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,820 KB
testcase_01 AC 40 ms
52,952 KB
testcase_02 AC 36 ms
52,180 KB
testcase_03 AC 36 ms
52,472 KB
testcase_04 AC 36 ms
52,896 KB
testcase_05 AC 36 ms
52,816 KB
testcase_06 AC 39 ms
52,624 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 37 ms
52,724 KB
testcase_09 AC 36 ms
53,080 KB
testcase_10 AC 36 ms
52,500 KB
testcase_11 AC 37 ms
52,492 KB
testcase_12 AC 37 ms
51,752 KB
testcase_13 AC 37 ms
52,556 KB
testcase_14 AC 36 ms
52,888 KB
testcase_15 AC 37 ms
51,996 KB
testcase_16 AC 37 ms
52,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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