結果

問題 No.1015 おつりは要らないです
ユーザー chinchillachinchilla
提出日時 2020-04-03 23:52:02
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,704 KB
最終ジャッジ日時 2024-11-17 23:17:36
合計ジャッジ時間 3,795 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 23 ms
10,624 KB
testcase_02 AC 24 ms
10,624 KB
testcase_03 AC 23 ms
10,752 KB
testcase_04 AC 24 ms
10,752 KB
testcase_05 AC 23 ms
10,752 KB
testcase_06 AC 24 ms
10,752 KB
testcase_07 AC 24 ms
10,752 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 25 ms
10,752 KB
testcase_10 AC 104 ms
21,256 KB
testcase_11 AC 102 ms
21,392 KB
testcase_12 AC 99 ms
21,004 KB
testcase_13 AC 99 ms
21,108 KB
testcase_14 AC 100 ms
21,704 KB
testcase_15 AC 96 ms
20,936 KB
testcase_16 AC 97 ms
21,376 KB
testcase_17 AC 99 ms
21,572 KB
testcase_18 AC 98 ms
21,180 KB
testcase_19 AC 96 ms
21,188 KB
testcase_20 AC 92 ms
21,040 KB
testcase_21 AC 93 ms
20,964 KB
testcase_22 AC 93 ms
21,084 KB
testcase_23 AC 90 ms
20,680 KB
testcase_24 AC 94 ms
21,100 KB
testcase_25 AC 91 ms
21,092 KB
testcase_26 AC 89 ms
20,940 KB
testcase_27 AC 91 ms
20,744 KB
testcase_28 AC 90 ms
20,948 KB
testcase_29 AC 90 ms
21,080 KB
testcase_30 AC 24 ms
10,752 KB
testcase_31 AC 68 ms
12,804 KB
testcase_32 AC 68 ms
12,680 KB
testcase_33 AC 94 ms
21,664 KB
testcase_34 AC 24 ms
10,752 KB
testcase_35 AC 24 ms
10,752 KB
testcase_36 AC 23 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x, y, z = map(int, input().split())
C = [-((int(w)+1)//-1000) for w in input().split()]
m = sum(c//10 for c in C)
z, m = max(z-m, 0), max(m-z, 0)
C = sorted(c%10 for c in C)[:max(n-z, 0)]
f = sum(c//5 for c in C) + 2*m
y, f = max(y-f, 0), max(f-y, 0)
C = sorted(c%5 for c in C)[:max(len(C)-y, 0)]
t = sum(C) + 5*f
print('No' if t>x else 'Yes')
0