結果

問題 No.1015 おつりは要らないです
ユーザー kimiyukikimiyuki
提出日時 2020-04-03 21:29:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 929 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,312 KB
最終ジャッジ日時 2024-11-17 23:05:56
合計ジャッジ時間 6,395 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,392 KB
testcase_01 AC 38 ms
11,392 KB
testcase_02 AC 33 ms
11,392 KB
testcase_03 AC 34 ms
11,520 KB
testcase_04 AC 35 ms
11,520 KB
testcase_05 AC 35 ms
11,520 KB
testcase_06 AC 34 ms
11,264 KB
testcase_07 AC 36 ms
11,392 KB
testcase_08 AC 34 ms
11,392 KB
testcase_09 AC 33 ms
11,392 KB
testcase_10 AC 233 ms
21,704 KB
testcase_11 AC 247 ms
21,916 KB
testcase_12 AC 234 ms
21,628 KB
testcase_13 AC 233 ms
21,768 KB
testcase_14 AC 239 ms
22,312 KB
testcase_15 AC 220 ms
21,560 KB
testcase_16 AC 233 ms
21,996 KB
testcase_17 AC 237 ms
22,184 KB
testcase_18 AC 235 ms
21,828 KB
testcase_19 AC 230 ms
21,676 KB
testcase_20 AC 186 ms
21,820 KB
testcase_21 AC 180 ms
21,612 KB
testcase_22 AC 178 ms
21,736 KB
testcase_23 AC 176 ms
21,272 KB
testcase_24 AC 185 ms
21,632 KB
testcase_25 AC 178 ms
21,616 KB
testcase_26 AC 183 ms
21,844 KB
testcase_27 AC 177 ms
21,400 KB
testcase_28 AC 174 ms
21,388 KB
testcase_29 AC 181 ms
21,648 KB
testcase_30 AC 34 ms
11,392 KB
testcase_31 AC 150 ms
13,152 KB
testcase_32 AC 148 ms
13,152 KB
testcase_33 AC 190 ms
22,192 KB
testcase_34 AC 34 ms
11,392 KB
testcase_35 AC 33 ms
11,392 KB
testcase_36 AC 34 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
from typing import *

def foo(k, value, a):
    for i in range(len(a)):
        delta = min(k, a[i] // value)
        k -= delta
        a[i] -= delta * value
    a.sort()
    while k and a:
        assert a[-1] < value
        k -= 1
        a.pop()

def solve(n: int, x: int, y: int, z: int, a: List[int]) -> bool:
    foo(z, 10000, a)
    foo(y, 5000, a)
    foo(x, 1000, a)
    return not a

# generated by online-judge-template-generator (https://github.com/kmyk/online-judge-template-generator)
def main():
    import sys
    tokens = iter(sys.stdin.read().split())
    N = int(next(tokens))
    X = int(next(tokens))
    Y = int(next(tokens))
    Z = int(next(tokens))
    A = [None for _ in range(N)]
    for i in range(N):
        A[i] = int(next(tokens))
    assert next(tokens, None) is None
    ans = solve(N, X, Y, Z, A)
    print(ans and 'Yes' or 'No')

if __name__ == '__main__':
    main()
0