結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 26 ms
10,496 KB
testcase_09 AC 26 ms
10,496 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 136 ms
20,680 KB
testcase_16 AC 135 ms
21,108 KB
testcase_17 AC 139 ms
21,300 KB
testcase_18 AC 133 ms
21,076 KB
testcase_19 AC 143 ms
20,792 KB
testcase_20 AC 129 ms
21,196 KB
testcase_21 AC 123 ms
20,980 KB
testcase_22 AC 130 ms
21,116 KB
testcase_23 AC 120 ms
20,772 KB
testcase_24 AC 130 ms
21,248 KB
testcase_25 AC 124 ms
20,860 KB
testcase_26 AC 126 ms
20,960 KB
testcase_27 AC 133 ms
20,764 KB
testcase_28 AC 127 ms
20,624 KB
testcase_29 AC 124 ms
20,892 KB
testcase_30 AC 28 ms
10,624 KB
testcase_31 AC 71 ms
12,460 KB
testcase_32 AC 75 ms
12,584 KB
testcase_33 AC 67 ms
21,560 KB
testcase_34 AC 27 ms
10,624 KB
testcase_35 AC 30 ms
10,624 KB
testcase_36 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

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

def use(cnt, val):
    for i in range(n):
        if a[i] < val:
            continue
        q, r = divmod(a[i], val)
        if cnt >= q:
            cnt -= q
            a[i] = r
        else:
            q -= cnt
            cnt = 0
            a[i] = val * q + r
            break
    else:
        a.sort(reverse=True)
        for i in range(n):
            if a[i] >= 0:
                if cnt:
                    a[i] = -1
                    cnt -= 1
                else:
                    break
            else:
                print('Yes')
                sys.exit()
            
def main():
    use(z, 10000)
    use(y, 5000)
    use(x, 1000)
    print('No')
    
if __name__ == '__main__':
    main()
0