結果

問題 No.1015 おつりは要らないです
ユーザー w0mbatw0mbat
提出日時 2020-04-03 22:27:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 620 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 86,880 KB
実行使用メモリ 94,620 KB
最終ジャッジ日時 2023-09-16 03:08:24
合計ジャッジ時間 5,451 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,044 KB
testcase_01 AC 69 ms
71,344 KB
testcase_02 AC 69 ms
71,292 KB
testcase_03 AC 68 ms
71,236 KB
testcase_04 AC 69 ms
71,460 KB
testcase_05 AC 71 ms
71,532 KB
testcase_06 AC 70 ms
71,344 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 110 ms
93,480 KB
testcase_11 AC 109 ms
94,172 KB
testcase_12 AC 108 ms
93,428 KB
testcase_13 AC 109 ms
93,772 KB
testcase_14 AC 108 ms
94,288 KB
testcase_15 AC 108 ms
93,536 KB
testcase_16 AC 107 ms
93,720 KB
testcase_17 AC 109 ms
94,268 KB
testcase_18 AC 106 ms
93,968 KB
testcase_19 AC 111 ms
93,572 KB
testcase_20 AC 102 ms
93,328 KB
testcase_21 AC 113 ms
93,324 KB
testcase_22 AC 101 ms
93,296 KB
testcase_23 AC 99 ms
93,056 KB
testcase_24 AC 101 ms
93,404 KB
testcase_25 AC 101 ms
93,196 KB
testcase_26 AC 105 ms
93,424 KB
testcase_27 AC 102 ms
92,856 KB
testcase_28 AC 102 ms
93,260 KB
testcase_29 AC 104 ms
93,224 KB
testcase_30 AC 70 ms
71,272 KB
testcase_31 AC 102 ms
91,528 KB
testcase_32 AC 102 ms
91,432 KB
testcase_33 AC 109 ms
94,620 KB
testcase_34 AC 67 ms
71,544 KB
testcase_35 AC 67 ms
71,200 KB
testcase_36 AC 67 ms
71,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X,Y,Z=map(int, input().split())
*A,=map(int, input().split())

ans = True
for a in A:
    d = (a + 5000) // 10000
    d = min(Z,d)
    Z -= d
    m = a - d * 10000

    d = (m + 4000) // 5000
    d = min(Y,d)
    Y -= d
    m -= d * 5000

    d = m//1000 + 1
    if d <= X:
        X -= d
        m -= d * 1000

    if m >= 0 and Y > 0:
        d = m//5000 + 1
        if d <= Y:
            Y -= d
            m -= d * 5000
    if m >= 0 and Z > 0:
        d = m//10000 + 1
        if d <= Z:
            Z -= d
            m -= d * 10000
    if m >= 0:
        ans = False
        break
print('Yes' if ans else 'No')
0