結果

問題 No.1015 おつりは要らないです
ユーザー paruf4paruf4
提出日時 2020-04-03 23:20:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,617 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,824 KB
最終ジャッジ日時 2024-07-03 06:21:49
合計ジャッジ時間 4,862 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 WA -
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 148 ms
21,372 KB
testcase_11 AC 144 ms
21,544 KB
testcase_12 AC 135 ms
21,008 KB
testcase_13 AC 140 ms
21,388 KB
testcase_14 AC 139 ms
21,556 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 133 ms
21,312 KB
testcase_21 AC 136 ms
21,232 KB
testcase_22 AC 125 ms
21,228 KB
testcase_23 AC 123 ms
20,768 KB
testcase_24 AC 132 ms
21,372 KB
testcase_25 AC 127 ms
21,104 KB
testcase_26 AC 130 ms
21,212 KB
testcase_27 AC 127 ms
20,884 KB
testcase_28 AC 128 ms
20,736 KB
testcase_29 AC 129 ms
21,268 KB
testcase_30 AC 30 ms
10,880 KB
testcase_31 AC 70 ms
12,656 KB
testcase_32 AC 70 ms
12,660 KB
testcase_33 WA -
testcase_34 AC 30 ms
10,752 KB
testcase_35 AC 29 ms
10,880 KB
testcase_36 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import floor
n,x,y,z=map(int,input().split())
a=list(map(int,input().split()))
a.sort()
for aa in a:
    if 1<=aa<1000:
        if x>0:
            x-=1
        elif y>0:
            y-=1
        elif z>0:
            z-=1
        else:
            print('No')
            exit()
    elif 1000<=aa<5000:
        d=floor(aa/1000)+1
        if x-d>0:
            x-=d
            if y>0:
                y-=1
            elif z>0:
                z-=1
            else:
                print('No')
                exit()
        elif y>0:
            y-=1
        elif z>0:
            z-=1
        else:
            print('No')
            exit()
    elif 5000<=aa<10000:
        d=floor(aa/1000)+1   
        if x-d>0:
            x-=d
            aa-=1000*d
            if aa>0:
                e=floor(aa/5000)+1
                if y-e>0:
                    y-=1
                elif z>0:
                    z-=1
                else:
                    print('No')
                    exit()
    elif aa>10000:
        d=floor(aa/1000)+1   
        if x-d>0:
            x-=d
            aa-=1000*d
            if aa>0:
                e=floor(aa/5000)+1
                if y-e>0:
                    aa-=5000*e
                    y-=e
                    if aa>0:
                        f=floor(aa/10000)+1       
                        if aa>0:
                            if z-f>0:
                                aa-=10000*f
                                z-=f
                            else:
                                print('No')
                                exit()
print('Yes')


0