結果

問題 No.1015 おつりは要らないです
ユーザー IT_parselyIT_parsely
提出日時 2020-04-03 23:35:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 746 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,872 KB
最終ジャッジ日時 2024-11-17 23:16:55
合計ジャッジ時間 6,932 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 23 ms
10,752 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 24 ms
10,752 KB
testcase_05 AC 24 ms
10,752 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 23 ms
10,752 KB
testcase_09 AC 24 ms
10,880 KB
testcase_10 AC 251 ms
21,284 KB
testcase_11 AC 254 ms
21,576 KB
testcase_12 AC 255 ms
21,048 KB
testcase_13 AC 256 ms
21,300 KB
testcase_14 AC 266 ms
21,872 KB
testcase_15 AC 249 ms
21,108 KB
testcase_16 AC 259 ms
21,276 KB
testcase_17 AC 269 ms
21,740 KB
testcase_18 AC 256 ms
21,236 KB
testcase_19 AC 252 ms
21,352 KB
testcase_20 AC 207 ms
21,232 KB
testcase_21 AC 206 ms
21,152 KB
testcase_22 AC 201 ms
21,156 KB
testcase_23 AC 195 ms
20,808 KB
testcase_24 AC 208 ms
21,292 KB
testcase_25 AC 205 ms
21,156 KB
testcase_26 AC 204 ms
21,132 KB
testcase_27 AC 207 ms
20,936 KB
testcase_28 AC 201 ms
20,988 KB
testcase_29 AC 207 ms
21,256 KB
testcase_30 AC 25 ms
10,752 KB
testcase_31 AC 182 ms
12,760 KB
testcase_32 AC 167 ms
12,760 KB
testcase_33 AC 82 ms
21,736 KB
testcase_34 AC 24 ms
10,752 KB
testcase_35 AC 27 ms
10,752 KB
testcase_36 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x, y, z = map(int, input().split())
A = list(map(int, input().split()))

for i in range(n):
    yukichi = min(A[i]//10000, z)
    z -= yukichi
    A[i] -= yukichi * 10000
    if not z:
        break

A.sort()
for i in range(z):
    A.pop()
    if not A:
        print('Yes')
        exit()

for i in range(len(A)):
    ichiyo = min(A[i]//5000, y)
    y -= ichiyo
    A[i] -= ichiyo * 5000
    if not y:
        break

A.sort()
for i in range(y):
    A.pop()
    if not A:
        print('Yes')
        exit()

for i in range(len(A)):
    noguchi = min(A[i]//1000, x)
    x -= noguchi
    A[i] -= noguchi * 1000
    if not x:
        break

A.sort()
for i in range(x):
    A.pop()
    if not A:
        print('Yes')
        exit()

print('No')

0