結果

問題 No.1015 おつりは要らないです
ユーザー OKCH3COOHOKCH3COOH
提出日時 2020-04-10 22:29:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 872 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,604 KB
最終ジャッジ日時 2024-09-15 20:59:28
合計ジャッジ時間 8,231 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 28 ms
10,496 KB
testcase_04 WA -
testcase_05 AC 29 ms
10,496 KB
testcase_06 AC 29 ms
10,368 KB
testcase_07 AC 28 ms
10,496 KB
testcase_08 AC 29 ms
10,496 KB
testcase_09 AC 28 ms
10,368 KB
testcase_10 AC 256 ms
20,900 KB
testcase_11 AC 261 ms
21,324 KB
testcase_12 AC 245 ms
20,940 KB
testcase_13 AC 253 ms
20,916 KB
testcase_14 AC 257 ms
21,588 KB
testcase_15 AC 247 ms
20,744 KB
testcase_16 AC 250 ms
21,024 KB
testcase_17 AC 258 ms
21,212 KB
testcase_18 AC 250 ms
21,108 KB
testcase_19 AC 253 ms
20,832 KB
testcase_20 AC 252 ms
20,856 KB
testcase_21 AC 251 ms
20,768 KB
testcase_22 AC 253 ms
20,892 KB
testcase_23 AC 244 ms
20,484 KB
testcase_24 AC 256 ms
21,160 KB
testcase_25 AC 253 ms
20,772 KB
testcase_26 AC 250 ms
20,748 KB
testcase_27 AC 245 ms
20,552 KB
testcase_28 AC 247 ms
20,536 KB
testcase_29 AC 246 ms
20,800 KB
testcase_30 AC 31 ms
10,496 KB
testcase_31 AC 234 ms
12,628 KB
testcase_32 AC 232 ms
12,504 KB
testcase_33 AC 97 ms
21,604 KB
testcase_34 WA -
testcase_35 AC 28 ms
10,624 KB
testcase_36 AC 29 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, sen, gosen, man = map(int, input().split())
A = list(map(int, input().split()))

def calc(a):
    if sen * 1000 + gosen * 5000 + man * 10000 <= a:
        return (-1, -1, -1)

    x = a

    m = min(man, x // 10000)
    x -= m * 10000
    g = min(gosen, x // 5000)
    x -= g * 5000
    s = min(sen, x // 1000)
    x -= s * 1000

    if x < 1000 and sen - s > 0:
        return (s + 1, g, m)
    if x < 5000 and gosen - g > 0:
        x -= 5000
        while x + 1000 < 0 and s > 0:
            x += 1000
            s -= 1
        return (s, g + 1, m)
    x -= 10000
    while x + 5000 < 0 and g > 0:
        x += 5000
        g -= 1
    while x + 1000 < 0 and s > 0:
        x += 1000
        s -= 1
    return (s, g, m + 1)

for a in A:
    x, y, z = calc(a)

    if x == -1:
        print('No')
        exit()
    sen -= x
    gosen -= y
    man -= z

print('Yes')
0