結果

問題 No.1046 Fruits Rush
ユーザー eQeeQe
提出日時 2020-05-09 08:45:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 470 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 62,328 KB
最終ジャッジ日時 2024-07-05 04:38:40
合計ジャッジ時間 1,682 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,676 KB
testcase_01 AC 45 ms
61,976 KB
testcase_02 AC 47 ms
60,928 KB
testcase_03 AC 46 ms
61,136 KB
testcase_04 AC 47 ms
60,980 KB
testcase_05 AC 47 ms
61,120 KB
testcase_06 AC 46 ms
61,196 KB
testcase_07 AC 48 ms
62,088 KB
testcase_08 AC 47 ms
61,512 KB
testcase_09 AC 47 ms
62,140 KB
testcase_10 AC 46 ms
61,536 KB
testcase_11 AC 45 ms
60,876 KB
testcase_12 AC 45 ms
61,500 KB
testcase_13 AC 46 ms
61,076 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from math import sqrt
import sys
from collections import deque, defaultdict
from heapq import heappop, heappush
from copy import deepcopy

INF=10**18
MOD=10**9+7
MAX=10**5+7

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

def main():
  N,K=map(int, input().split())
  A = list(map(int, input().split()))
  A.sort()
  A=A[::-1]
  ans=0
  for i in range(K):
    if A[i]>0: ans+=A[i]

  print(ans)


if __name__ == '__main__':
    main()



0