結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 170 ms
21,348 KB
testcase_11 AC 178 ms
21,548 KB
testcase_12 AC 162 ms
21,044 KB
testcase_13 AC 176 ms
21,268 KB
testcase_14 AC 180 ms
21,900 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 136 ms
21,212 KB
testcase_21 AC 136 ms
21,088 KB
testcase_22 AC 141 ms
21,116 KB
testcase_23 AC 135 ms
20,780 KB
testcase_24 AC 139 ms
21,384 KB
testcase_25 AC 140 ms
21,120 KB
testcase_26 AC 138 ms
21,092 KB
testcase_27 AC 137 ms
20,904 KB
testcase_28 AC 142 ms
20,972 KB
testcase_29 AC 137 ms
21,240 KB
testcase_30 AC 28 ms
10,752 KB
testcase_31 AC 73 ms
13,104 KB
testcase_32 AC 75 ms
13,104 KB
testcase_33 AC 142 ms
21,700 KB
testcase_34 AC 29 ms
10,752 KB
testcase_35 AC 29 ms
10,752 KB
testcase_36 AC 28 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X, Y, Z = map(int,input().split())
A = list(map(int,input().split())) 
B = []
C = []
for i in A:   
    if i >= 10000:
        temp = i//10000
        if Z >= temp:
            B.append(i - temp*10000)
            Z -= temp
        else:
            B.append(i)
    else:
        B.append(i)
B.sort(reverse = True)

if Z >= 0:
        B = B[Z:]

for i in B:   
    if i >= 5000:
        temp = i//5000
        if Y >= temp:
            C.append(i - temp*5000)
            Y -= temp
        else:
            C.append(i)
    else:
        C.append(i)
C.sort(reverse = True)

if Y >= 0:
        C = C[Y:]

for i in C:
    X -= i//1000 + 1

if X >= 0 and Y >= 0 and Z >= 0:
    print("Yes")
else:
    print("No")
0