結果

問題 No.1046 Fruits Rush
ユーザー Shivam SinghShivam Singh
提出日時 2020-05-08 21:23:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,045 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 65,888 KB
最終ジャッジ日時 2024-07-03 23:31:45
合計ジャッジ時間 1,784 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
64,048 KB
testcase_01 AC 55 ms
64,728 KB
testcase_02 AC 57 ms
63,900 KB
testcase_03 AC 57 ms
65,100 KB
testcase_04 AC 52 ms
64,676 KB
testcase_05 AC 52 ms
64,312 KB
testcase_06 AC 53 ms
64,232 KB
testcase_07 AC 52 ms
63,836 KB
testcase_08 AC 52 ms
63,996 KB
testcase_09 AC 54 ms
65,888 KB
testcase_10 AC 57 ms
64,836 KB
testcase_11 AC 54 ms
64,480 KB
testcase_12 AC 54 ms
64,724 KB
testcase_13 AC 55 ms
65,196 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# Template 1.0
import sys, re
from collections import deque, defaultdict, Counter, OrderedDict
from math import ceil, sqrt, hypot, factorial, pi, sin, cos, radians
from heapq import heappush, heappop, heapify, nlargest, nsmallest
def STR(): return list(input())
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(): return list(map(int, input().split()))
def list2d(a, b, c): return [[c] * b for i in range(a)]
def sortListWithIndex(listOfTuples, idx):   return (sorted(listOfTuples, key=lambda x: x[idx]))
def sortDictWithVal(passedDic):
    temp = sorted(passedDic.items(), key=lambda kv: (kv[1], kv[0]))
    toret = {}
    for tup in temp:
        toret[tup[0]] = tup[1]
    return toret
def sortDictWithKey(passedDic):
    return dict(OrderedDict(sorted(passedDic.items())))
sys.setrecursionlimit(10 ** 9)
INF = float('inf')
mod = 10 ** 9 + 7

n, k = MAP()

a = LIST()

a.sort()

a = a[::-1]
ans = 0
for i, el in enumerate(a):
    if(k<=0):
        break
    if(el>0):
        k-=1
        ans+=el
print(ans)
0