結果

問題 No.2028 Even Choice
ユーザー 8nd5t8nd5t
提出日時 2022-08-05 21:44:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 663 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 117,888 KB
最終ジャッジ日時 2024-09-15 18:06:57
合計ジャッジ時間 8,224 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 249 ms
117,888 KB
testcase_02 AC 251 ms
116,608 KB
testcase_03 AC 220 ms
116,736 KB
testcase_04 AC 220 ms
116,736 KB
testcase_05 AC 187 ms
90,496 KB
testcase_06 WA -
testcase_07 AC 192 ms
91,904 KB
testcase_08 AC 221 ms
105,344 KB
testcase_09 AC 229 ms
104,200 KB
testcase_10 AC 190 ms
92,032 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 237 ms
108,928 KB
testcase_14 AC 191 ms
91,904 KB
testcase_15 AC 169 ms
84,480 KB
testcase_16 WA -
testcase_17 AC 173 ms
84,224 KB
testcase_18 AC 170 ms
84,224 KB
testcase_19 AC 170 ms
84,352 KB
testcase_20 AC 175 ms
84,480 KB
testcase_21 AC 172 ms
84,352 KB
testcase_22 AC 173 ms
84,096 KB
testcase_23 WA -
testcase_24 AC 172 ms
84,224 KB
testcase_25 WA -
testcase_26 AC 173 ms
84,224 KB
testcase_27 AC 172 ms
84,224 KB
testcase_28 WA -
testcase_29 AC 203 ms
98,176 KB
testcase_30 AC 193 ms
91,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter,defaultdict,deque
from heapq import heappop,heappush,heapify
from bisect import bisect_left,bisect_right 
import sys,math,itertools,pprint,fractions
sys.setrecursionlimit(10**8)
mod = 998244353
INF = float('inf')
def inp(): return int(sys.stdin.readline())
def inpl(): return list(map(int, sys.stdin.readline().split()))
def inpl_1(): return list(map(lambda x:int(x)-1, sys.stdin.readline().split()))
def inplm(): return map(int, sys.stdin.readline().split())
def inpl_1m(): return map(lambda x:int(x)-1, sys.stdin.readline().split())
def err(x): print(x); exit()

n,k = inpl()
a = inpl()
print(sum(sorted(a[1:],reverse=True)[:k]))
0