結果

問題 No.1015 おつりは要らないです
ユーザー tachyon777tachyon777
提出日時 2020-04-03 22:44:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 704 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 115,840 KB
最終ジャッジ日時 2024-07-03 05:10:22
合計ジャッジ時間 4,553 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 35 ms
51,584 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 40 ms
51,584 KB
testcase_08 AC 37 ms
51,328 KB
testcase_09 AC 38 ms
51,456 KB
testcase_10 AC 118 ms
104,960 KB
testcase_11 AC 111 ms
104,960 KB
testcase_12 AC 108 ms
104,320 KB
testcase_13 AC 112 ms
104,960 KB
testcase_14 AC 112 ms
105,472 KB
testcase_15 AC 115 ms
104,576 KB
testcase_16 AC 118 ms
105,344 KB
testcase_17 AC 116 ms
105,216 KB
testcase_18 AC 114 ms
105,088 KB
testcase_19 AC 112 ms
104,832 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 40 ms
51,840 KB
testcase_31 AC 103 ms
111,360 KB
testcase_32 AC 103 ms
111,360 KB
testcase_33 AC 90 ms
102,912 KB
testcase_34 AC 36 ms
51,712 KB
testcase_35 WA -
testcase_36 AC 36 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.buffer.readline
def even(n): return 1 if n%2==0 else 0

n,sen,gosen,man = map(int,readline().split())
lst1 = list(map(int,readline().split()))

S = []
G = []
M = []

for i in lst1:
    i += 1

    M.append(i//10000)

    res = i%10000

    G.append(res//5000)

    res = i%5000

    S.append((res+1000-1)//1000)
S.sort()
for i in S:
    if sen - i >= 0:
        sen -= i
    else:
        G.append(1)

if sen:
    gosen += sen//5
G.sort()
for i in G:
    if gosen - i >= 0:
        gosen -= i
    else:
        M.append(1)

if gosen:
    man += gosen//2
M.sort()
for i in M:
    if man - i >= 0:
        man -= i
    else:
        print("No")
        exit()
print("Yes")

0