結果
問題 | No.1015 おつりは要らないです |
ユーザー | Ryushi-tech |
提出日時 | 2020-06-27 15:29:00 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 820 bytes |
コンパイル時間 | 182 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 21,936 KB |
最終ジャッジ日時 | 2024-07-05 15:55:17 |
合計ジャッジ時間 | 9,760 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 29 ms
10,624 KB |
testcase_02 | AC | 32 ms
10,624 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 30 ms
10,624 KB |
testcase_08 | AC | 29 ms
10,752 KB |
testcase_09 | AC | 28 ms
10,624 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 351 ms
20,976 KB |
testcase_16 | AC | 359 ms
21,156 KB |
testcase_17 | AC | 370 ms
21,412 KB |
testcase_18 | AC | 380 ms
20,864 KB |
testcase_19 | AC | 358 ms
20,956 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 | 32 ms
10,752 KB |
testcase_31 | WA | - |
testcase_32 | AC | 68 ms
12,372 KB |
testcase_33 | AC | 90 ms
21,472 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
ソースコード
from heapq import heappop, heapify, heappush n, x, y, z = map(int, input().split()) A = list(int(-a) for a in map(int, input().split())) heapify(A) if n > x + y + z or -sum(A) >= x * 1000 + y * 5000 + z * 10000: print("No") exit() while A: if z == 0: break a = -heappop(A) if a >= 10000: t = min(a // 10000, z) z -= t a -= 10000 * t heappush(A, -a) else: z -= 1 while A: if y == 0: break a = -heappop(A) if a >= 5000: t = min(a // 5000, y) y -= t a -= 5000 * t heappush(A, -a) else: y -= 1 while A: if x == 0: break a = -heappop(A) t = min((a + 1000) // 1000, x) x -= t a -= t * 1000 if a >= 0: heappush(A, -a) print("No" if A else "yes")