結果

問題 No.1015 おつりは要らないです
ユーザー Lily0727KLily0727K
提出日時 2020-04-04 13:12:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 487 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,668 KB
最終ジャッジ日時 2024-11-18 05:45:32
合計ジャッジ時間 11,073 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 448 ms
21,100 KB
testcase_11 AC 463 ms
21,396 KB
testcase_12 AC 426 ms
20,860 KB
testcase_13 AC 449 ms
21,248 KB
testcase_14 AC 455 ms
21,668 KB
testcase_15 AC 426 ms
20,792 KB
testcase_16 AC 487 ms
21,096 KB
testcase_17 AC 454 ms
21,412 KB
testcase_18 AC 451 ms
21,188 KB
testcase_19 AC 449 ms
21,032 KB
testcase_20 AC 382 ms
21,160 KB
testcase_21 AC 371 ms
20,968 KB
testcase_22 AC 376 ms
20,968 KB
testcase_23 AC 369 ms
20,628 KB
testcase_24 AC 378 ms
21,236 KB
testcase_25 AC 377 ms
20,972 KB
testcase_26 AC 387 ms
20,948 KB
testcase_27 AC 363 ms
20,884 KB
testcase_28 AC 373 ms
20,860 KB
testcase_29 AC 384 ms
21,000 KB
testcase_30 AC 32 ms
10,752 KB
testcase_31 AC 277 ms
14,992 KB
testcase_32 AC 280 ms
14,992 KB
testcase_33 AC 334 ms
21,548 KB
testcase_34 AC 31 ms
10,752 KB
testcase_35 AC 31 ms
10,752 KB
testcase_36 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, *bill_cnt = map(int, input().split())
bill_money = [1000, 5000, 10000]

arr = [a + 1 for a in map(int, input().split())]
arr.sort(reverse=True)

for i in reversed(range(3)):
    cnt = bill_cnt[i]
    money = bill_money[i]

    for j in range(n):
        if arr[j] > 0:
            use_cnt = min(arr[j] // money, cnt)
            cnt -= use_cnt
            arr[j] -= use_cnt * money
    arr.sort(reverse=True)
    for j in range(n):
        if cnt > 0:
            cnt -= 1
            arr[j] -= money
    arr.sort(reverse=True)

print("Yes" if arr[0] <= 0 else "No")
0