結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 78 ms
21,112 KB
testcase_11 AC 82 ms
21,432 KB
testcase_12 AC 82 ms
21,108 KB
testcase_13 AC 88 ms
21,216 KB
testcase_14 AC 87 ms
21,648 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 81 ms
21,152 KB
testcase_21 AC 82 ms
21,064 KB
testcase_22 AC 83 ms
21,068 KB
testcase_23 AC 79 ms
20,728 KB
testcase_24 AC 81 ms
21,084 KB
testcase_25 AC 79 ms
21,068 KB
testcase_26 AC 80 ms
20,916 KB
testcase_27 AC 82 ms
20,980 KB
testcase_28 AC 78 ms
21,040 KB
testcase_29 AC 82 ms
21,180 KB
testcase_30 AC 27 ms
10,752 KB
testcase_31 AC 80 ms
12,632 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 27 ms
10,752 KB
testcase_35 WA -
testcase_36 AC 27 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
N, X, Y, Z = map(int, input().split())
A = list(map(int, input().split()))
for i in range(N):
    v = A[i]
    # t = v // 10000
    # Z -= t
    # v %= 10000
    # t = v // 5000
    # Y -= t
    # v %= 5000
    
    while v > 0:
        if v <= 1000:
            v -= 1000
            X -= 1
            continue
        elif v <= 5000:
            v -= 5000
            Y -= 1
            continue
        elif v <= 10000:
            v -= 10000
            Z -= 1
            continue
        else:
            break
# if X >= 0 and Y >= 0 and Z >= 0:
if X * 1000 + Y * 5000 + Z * 10000 >= 0:
    print("Yes")
else:
    print("No")
0