結果

問題 No.1015 おつりは要らないです
ユーザー Kiri8128Kiri8128
提出日時 2020-04-03 21:42:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 610 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 78,300 KB
最終ジャッジ日時 2024-11-17 23:07:42
合計ジャッジ時間 3,134 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,004 KB
testcase_01 AC 36 ms
52,768 KB
testcase_02 AC 33 ms
52,260 KB
testcase_03 AC 34 ms
53,128 KB
testcase_04 AC 33 ms
53,864 KB
testcase_05 AC 34 ms
52,068 KB
testcase_06 AC 34 ms
54,028 KB
testcase_07 AC 34 ms
51,744 KB
testcase_08 AC 33 ms
52,580 KB
testcase_09 AC 34 ms
53,820 KB
testcase_10 AC 55 ms
77,168 KB
testcase_11 AC 60 ms
77,036 KB
testcase_12 AC 54 ms
76,656 KB
testcase_13 AC 54 ms
76,240 KB
testcase_14 AC 54 ms
76,776 KB
testcase_15 AC 54 ms
77,360 KB
testcase_16 AC 55 ms
77,640 KB
testcase_17 AC 56 ms
76,420 KB
testcase_18 AC 59 ms
76,204 KB
testcase_19 AC 57 ms
76,972 KB
testcase_20 AC 59 ms
76,880 KB
testcase_21 AC 57 ms
76,152 KB
testcase_22 AC 57 ms
76,480 KB
testcase_23 AC 56 ms
76,460 KB
testcase_24 AC 58 ms
77,264 KB
testcase_25 AC 54 ms
77,304 KB
testcase_26 AC 54 ms
77,760 KB
testcase_27 AC 55 ms
77,048 KB
testcase_28 AC 55 ms
75,960 KB
testcase_29 AC 55 ms
77,220 KB
testcase_30 AC 34 ms
52,992 KB
testcase_31 AC 50 ms
72,204 KB
testcase_32 AC 49 ms
71,476 KB
testcase_33 AC 54 ms
78,300 KB
testcase_34 AC 34 ms
51,688 KB
testcase_35 AC 35 ms
52,896 KB
testcase_36 AC 34 ms
53,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X, Y, Z = map(int, input().split())
A = [int(a) for a in input().split()]


B = [0] * 10
C = 0
for a in A:
    b, c = a % 10000 // 1000, a // 10000
    C += c
    B[b] += 1

t = min(Z, C)
Z -= t
C -= t

for i in range(10)[::-1]:
    t = min(Z, B[i])
    B[i] -= t
    Z -= t

t = min(Y, C)
Y -= t
C -= t
B[4] += t

for i in range(10)[::-1]:
    t = min(Y, B[i])
    B[i] -= t
    Y -= t
    if i >= 5:
        B[i-5] += t

t = min(Z, C)
Z -= t
C -= t
B[8] += t

for i in range(10)[::-1]:
    t = min(X, B[i])
    B[i] -= t
    X -= t
    if i:
        B[i-1] += t

print("Yes" if sum(B) + C == 0 else "No")
0