結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 34 ms
51,940 KB
testcase_02 AC 32 ms
52,224 KB
testcase_03 AC 34 ms
51,968 KB
testcase_04 AC 36 ms
51,876 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 34 ms
52,096 KB
testcase_08 AC 34 ms
51,840 KB
testcase_09 AC 35 ms
52,096 KB
testcase_10 AC 100 ms
103,552 KB
testcase_11 AC 102 ms
104,248 KB
testcase_12 AC 99 ms
102,856 KB
testcase_13 AC 101 ms
104,280 KB
testcase_14 AC 102 ms
104,248 KB
testcase_15 AC 101 ms
104,336 KB
testcase_16 AC 100 ms
103,436 KB
testcase_17 AC 103 ms
104,292 KB
testcase_18 AC 99 ms
103,196 KB
testcase_19 AC 100 ms
103,388 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 34 ms
53,288 KB
testcase_31 AC 83 ms
111,744 KB
testcase_32 AC 82 ms
111,948 KB
testcase_33 AC 77 ms
103,032 KB
testcase_34 AC 35 ms
53,284 KB
testcase_35 WA -
testcase_36 AC 35 ms
52,884 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

    if 9000 < res:
        M[-1] += 1
        continue

    G.append(res//5000)

    res = res%5000

    if 4000 < res:
        G[-1] += 1
        continue

    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