結果

問題 No.1015 おつりは要らないです
ユーザー Lily0727KLily0727K
提出日時 2020-04-04 13:09:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 535 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,832 KB
最終ジャッジ日時 2024-07-03 07:17:03
合計ジャッジ時間 10,600 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 398 ms
21,140 KB
testcase_11 AC 386 ms
21,528 KB
testcase_12 AC 384 ms
20,888 KB
testcase_13 AC 391 ms
21,244 KB
testcase_14 AC 390 ms
21,832 KB
testcase_15 AC 374 ms
20,944 KB
testcase_16 AC 365 ms
21,256 KB
testcase_17 AC 408 ms
21,704 KB
testcase_18 AC 375 ms
21,184 KB
testcase_19 AC 377 ms
21,064 KB
testcase_20 AC 419 ms
21,056 KB
testcase_21 AC 397 ms
20,964 KB
testcase_22 AC 406 ms
21,092 KB
testcase_23 AC 392 ms
20,632 KB
testcase_24 AC 418 ms
21,240 KB
testcase_25 AC 410 ms
20,976 KB
testcase_26 AC 419 ms
21,076 KB
testcase_27 AC 401 ms
20,752 KB
testcase_28 AC 404 ms
20,824 KB
testcase_29 AC 412 ms
21,212 KB
testcase_30 AC 28 ms
10,752 KB
testcase_31 AC 325 ms
14,864 KB
testcase_32 WA -
testcase_33 AC 299 ms
21,548 KB
testcase_34 AC 28 ms
10,624 KB
testcase_35 AC 28 ms
10,752 KB
testcase_36 AC 28 ms
10,880 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):
        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