結果

問題 No.1015 おつりは要らないです
ユーザー rulerruler
提出日時 2020-04-03 21:53:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 749 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,708 KB
最終ジャッジ日時 2024-07-03 02:20:53
合計ジャッジ時間 6,772 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 224 ms
21,264 KB
testcase_11 AC 225 ms
21,436 KB
testcase_12 AC 213 ms
20,768 KB
testcase_13 AC 220 ms
21,276 KB
testcase_14 AC 227 ms
21,704 KB
testcase_15 AC 211 ms
20,956 KB
testcase_16 AC 220 ms
21,260 KB
testcase_17 AC 225 ms
21,448 KB
testcase_18 AC 216 ms
21,092 KB
testcase_19 AC 216 ms
21,192 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,624 KB
testcase_31 AC 163 ms
12,544 KB
testcase_32 AC 158 ms
12,544 KB
testcase_33 AC 85 ms
21,708 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from bisect import bisect_left as bi_l, bisect_right as bi_r

n, x, y, z, *A = map(int, sys.stdin.read().split())

def main():
    A.sort(reverse=True)
    r = [x, y, z]
    cand = [1000, 5000, 10000]
    for a in A:
        for i in range(2, -1, -1):
            q, p = divmod(a, cand[i])
            if r[i] >= q:
                r[i] -= q
                q = 0
            else:
                q -= r[i]
                r[i] = 0
            a = q * cand[i] + p
        i = bi_r(cand, a)
        while i < 3:
            if r[i] > 0:
                r[i] -= 1
                break
            else:
                i += 1
        else:
            print('No')
            return
    print('Yes')

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