結果

問題 No.1015 おつりは要らないです
ユーザー setsunasetsuna
提出日時 2020-06-25 15:48:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 434 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,680 KB
最終ジャッジ日時 2024-07-03 21:33:58
合計ジャッジ時間 8,174 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 32 ms
10,752 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 257 ms
21,076 KB
testcase_16 AC 269 ms
21,228 KB
testcase_17 AC 285 ms
21,552 KB
testcase_18 AC 272 ms
21,188 KB
testcase_19 AC 278 ms
21,172 KB
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 28 ms
10,752 KB
testcase_31 AC 188 ms
12,532 KB
testcase_32 AC 181 ms
12,656 KB
testcase_33 AC 104 ms
21,680 KB
testcase_34 AC 28 ms
10,752 KB
testcase_35 AC 27 ms
10,752 KB
testcase_36 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X, Y, Z = map(int, input().split())
A = sorted([x // 1000 + 1 for x in list(map(int, input().split()))])

for i in range(N):
    x, y, z = A[i], 0, 0
    if x > X:
        y = (x - X) // 5 + int((x - X) % 5 != 0)
        x = max(x - y * 5, 0)
    if y > Y:
        z = (y - Y) // 2 + int((y - Y) % 2 != 0)
        y = max(y - z * 2, 0)
    if z > Z:
        print('No')
        exit()

    X -= x
    Y -= y
    Z -= z
print('Yes')
0