結果
問題 | No.1015 おつりは要らないです |
ユーザー | とろちゃ |
提出日時 | 2023-10-08 20:07:02 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,344 bytes |
コンパイル時間 | 459 ms |
コンパイル使用メモリ | 82,420 KB |
実行使用メモリ | 90,920 KB |
最終ジャッジ日時 | 2024-07-26 18:11:47 |
合計ジャッジ時間 | 6,850 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
55,588 KB |
testcase_01 | AC | 42 ms
55,136 KB |
testcase_02 | AC | 42 ms
56,180 KB |
testcase_03 | AC | 41 ms
55,588 KB |
testcase_04 | AC | 42 ms
56,076 KB |
testcase_05 | AC | 42 ms
54,660 KB |
testcase_06 | AC | 41 ms
55,840 KB |
testcase_07 | AC | 39 ms
54,896 KB |
testcase_08 | AC | 39 ms
54,716 KB |
testcase_09 | AC | 39 ms
56,268 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 217 ms
90,224 KB |
testcase_16 | AC | 224 ms
90,496 KB |
testcase_17 | AC | 222 ms
90,656 KB |
testcase_18 | AC | 222 ms
90,448 KB |
testcase_19 | AC | 228 ms
90,628 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 | 41 ms
56,620 KB |
testcase_31 | AC | 98 ms
89,124 KB |
testcase_32 | AC | 96 ms
89,048 KB |
testcase_33 | AC | 99 ms
90,416 KB |
testcase_34 | AC | 40 ms
56,324 KB |
testcase_35 | WA | - |
testcase_36 | AC | 42 ms
55,132 KB |
ソースコード
# import pypyjit;pypyjit.set_param("max_unroll_recursion=-1") # from bisect import * # from collections import * from heapq import * # from itertools import * # from sortedcontainers import * # from math import lcm # from datetime import * # from decimal import * # PyPyだと遅い # from string import ascii_lowercase, ascii_uppercase # import numpy as np # from atcoder.dsu import * # from atcoder.lazysegtree import * # from atcoder.segtree import * # from sortedcontainers import * from random import * import sys import os is_AtC = os.getenv("ATCODER", 0) # sys.setrecursionlimit(10**6) # PyPyは呪文を付ける INF = 1 << 61 MOD = 998244353 MOD = 10**9 + 7 File = sys.stdin def input(): return File.readline() # /////////////////////////////////////////////////////////////////////////// N, X, Y, Z = map(int, input().split()) A = list(map(lambda x: -int(x) - 1, input().split())) heapify(A) def operation(num, p): while A and num: pop = -heappop(A) d, m = divmod(pop, p) if d: if d >= num: heappush(A, -pop + p * num) num = 0 else: heappush(A, -m) num -= d else: num -= 1 operation(Z, 10000) operation(Y, 5000) operation(X, 1000) if not A: print("Yes") else: print("No")