結果

問題 No.1015 おつりは要らないです
ユーザー tamatotamato
提出日時 2020-04-03 21:33:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 650 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 89,600 KB
最終ジャッジ日時 2024-07-03 01:35:05
合計ジャッジ時間 3,985 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 36 ms
51,712 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 36 ms
51,968 KB
testcase_08 AC 35 ms
51,840 KB
testcase_09 AC 37 ms
51,968 KB
testcase_10 AC 84 ms
87,168 KB
testcase_11 AC 84 ms
87,424 KB
testcase_12 AC 85 ms
87,296 KB
testcase_13 AC 85 ms
87,296 KB
testcase_14 AC 86 ms
87,680 KB
testcase_15 AC 80 ms
87,296 KB
testcase_16 AC 82 ms
87,168 KB
testcase_17 AC 84 ms
87,552 KB
testcase_18 AC 84 ms
87,552 KB
testcase_19 AC 81 ms
87,040 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 38 ms
51,712 KB
testcase_31 AC 67 ms
79,488 KB
testcase_32 AC 67 ms
79,744 KB
testcase_33 AC 79 ms
89,600 KB
testcase_34 AC 36 ms
51,712 KB
testcase_35 AC 37 ms
51,840 KB
testcase_36 AC 35 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline

    N, x, y, z = map(int, input().split())
    A = list(map(int, input().split()))
    for i, a in enumerate(A):
        A[i] = (a // 1000 + 1) * 1000

    for i, a in enumerate(A):
        d = min(z, a // 10000)
        A[i] -= d * 10000
        z -= d
    for i, a in enumerate(A):
        d = min(y, a // 5000)
        A[i] -= d * 5000
        y -= d
    A.sort()
    for i in range(min(y+z, N)):
        A[-i-1] = 0
    for i, a in enumerate(A):
        x -= a // 1000
        if x < 0:
            print('No')
            exit()
    print('Yes')


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