結果

問題 No.1015 おつりは要らないです
ユーザー KyoroidKyoroid
提出日時 2020-04-03 21:42:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 704 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,724 KB
最終ジャッジ日時 2024-07-03 01:50:33
合計ジャッジ時間 4,661 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 WA -
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 140 ms
21,276 KB
testcase_11 AC 140 ms
21,668 KB
testcase_12 AC 128 ms
20,900 KB
testcase_13 AC 133 ms
21,152 KB
testcase_14 AC 138 ms
21,720 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 30 ms
10,624 KB
testcase_31 AC 87 ms
12,604 KB
testcase_32 AC 88 ms
12,608 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 27 ms
10,752 KB
testcase_36 AC 27 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def read():
    N, X, Y, Z = list(map(int, input().split()))
    A = list(map(int, input().split()))
    return N, X, Y, Z, A


def pay(a, x, y, z):
    nz = a // 10000
    ny = (a - 10000 * nz) // 5000
    nx = (a - 10000 * nz - 5000 * ny) // 1000
    if x > 0:
        nx += 1
    elif y > 0:
        ny += 1
    elif z > 0:
        nz += 1
    else:
        return -1, -1, -1
    return nx, ny, nz


def solve(N, X, Y, Z, A):
    A = sorted(A, reverse=True)
    for a in A:
        nx, ny, nz = pay(a, X, Y, Z)
        if nx < 0:
            return "No"
        X -= nx
        Y -= ny
        Z -= nz
    return "Yes"


if __name__ == "__main__":
    inputs = read()
    print("%s" % solve(*inputs))
0