結果

問題 No.1046 Fruits Rush
ユーザー uni_pythonuni_python
提出日時 2020-06-19 00:07:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 400 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 53,460 KB
最終ジャッジ日時 2024-07-03 13:04:05
合計ジャッジ時間 1,901 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,032 KB
testcase_01 AC 38 ms
52,612 KB
testcase_02 AC 38 ms
52,648 KB
testcase_03 AC 38 ms
52,080 KB
testcase_04 AC 38 ms
52,256 KB
testcase_05 AC 37 ms
52,956 KB
testcase_06 AC 39 ms
52,468 KB
testcase_07 AC 40 ms
52,440 KB
testcase_08 AC 38 ms
52,676 KB
testcase_09 AC 38 ms
53,360 KB
testcase_10 AC 39 ms
53,412 KB
testcase_11 AC 38 ms
52,332 KB
testcase_12 AC 39 ms
53,460 KB
testcase_13 AC 38 ms
53,068 KB
testcase_14 AC 38 ms
52,392 KB
testcase_15 AC 38 ms
52,088 KB
testcase_16 AC 38 ms
52,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))
mod=10**9+7

def main():
    N,K=MI()
    A=LI()
    A.sort(reverse=True)
    ans=A[0]
    for i in range(1,min(N,K)):
        temp=ans+A[i]
        if temp>ans:
            ans=temp
        else:
            break
    print(ans)
    


main()
0