結果
問題 | No.1015 おつりは要らないです |
ユーザー | near12 |
提出日時 | 2020-04-03 21:39:08 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 470 bytes |
コンパイル時間 | 224 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 21,820 KB |
最終ジャッジ日時 | 2024-07-03 01:46:18 |
合計ジャッジ時間 | 7,455 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 28 ms
10,752 KB |
testcase_02 | AC | 28 ms
10,624 KB |
testcase_03 | AC | 26 ms
10,624 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 25 ms
10,624 KB |
testcase_08 | AC | 28 ms
10,624 KB |
testcase_09 | AC | 27 ms
10,624 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 252 ms
20,804 KB |
testcase_16 | AC | 254 ms
20,956 KB |
testcase_17 | AC | 249 ms
21,564 KB |
testcase_18 | AC | 238 ms
21,044 KB |
testcase_19 | AC | 256 ms
20,920 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 28 ms
10,496 KB |
testcase_31 | WA | - |
testcase_32 | AC | 69 ms
12,384 KB |
testcase_33 | AC | 230 ms
21,408 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
ソースコード
n, x, y, z = map(int, input().split()) a = sorted(map(int, input().split())) ans = 'Yes' for i in a: if i // 10000 > 0 and z: num = min(i // 10000, z) z -= num i -= 10000 * num if i // 5000 > 0 and y: num = min(i // 5000, y) y -= num i -= 5000 * num if i // 1000 > 0 and x: num = min(i // 1000, x) y -= num i -= 1000 * num if i > 0 or x + y + z <= 0: ans = 'No' print(ans)