結果

問題 No.617 Nafmo、買い出しに行く
ユーザー RyutoRyuto
提出日時 2017-12-17 17:02:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 361 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 53,952 KB
最終ジャッジ日時 2024-05-09 10:34:09
合計ジャッジ時間 1,977 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,056 KB
testcase_01 AC 36 ms
52,744 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 36 ms
52,528 KB
testcase_06 AC 37 ms
52,676 KB
testcase_07 AC 38 ms
52,820 KB
testcase_08 AC 37 ms
52,468 KB
testcase_09 AC 36 ms
52,132 KB
testcase_10 AC 37 ms
52,516 KB
testcase_11 AC 37 ms
52,832 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 36 ms
52,876 KB
testcase_16 AC 37 ms
52,128 KB
testcase_17 AC 36 ms
52,688 KB
testcase_18 AC 37 ms
52,468 KB
testcase_19 AC 37 ms
52,068 KB
testcase_20 AC 37 ms
52,404 KB
testcase_21 AC 36 ms
52,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python

indat = [int(x) for x in input().split()]
weights = []
for i in range(indat[0]):
    weights.append(int(input()))
weights.sort()
weights.reverse()

ans = 0
for weight in weights:
    ans += weight
    if ans == indat[1]:
        break
    elif ans > indat[1]:
        ans -= weight
        continue
    else:
        continue

print(ans)
0