結果

問題 No.2028 Even Choice
ユーザー ikomaikoma
提出日時 2022-08-05 22:14:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 151 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 104,576 KB
最終ジャッジ日時 2024-09-15 19:14:42
合計ジャッジ時間 3,597 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 136 ms
104,456 KB
testcase_02 AC 131 ms
102,992 KB
testcase_03 AC 98 ms
102,956 KB
testcase_04 AC 99 ms
102,828 KB
testcase_05 AC 57 ms
68,864 KB
testcase_06 WA -
testcase_07 AC 62 ms
72,320 KB
testcase_08 AC 91 ms
90,752 KB
testcase_09 AC 97 ms
95,488 KB
testcase_10 AC 61 ms
72,320 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 104 ms
99,712 KB
testcase_14 AC 61 ms
72,416 KB
testcase_15 AC 38 ms
51,456 KB
testcase_16 WA -
testcase_17 AC 37 ms
51,200 KB
testcase_18 AC 39 ms
51,840 KB
testcase_19 AC 38 ms
51,840 KB
testcase_20 AC 39 ms
52,096 KB
testcase_21 AC 38 ms
51,584 KB
testcase_22 AC 39 ms
51,584 KB
testcase_23 WA -
testcase_24 AC 37 ms
51,456 KB
testcase_25 WA -
testcase_26 AC 37 ms
51,200 KB
testcase_27 AC 37 ms
51,968 KB
testcase_28 WA -
testcase_29 AC 72 ms
79,744 KB
testcase_30 AC 60 ms
72,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

B = sorted(A[1:], reverse=True)
print(sum(B[:K]))
0