結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 33 ms
11,008 KB
testcase_02 AC 32 ms
11,008 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 33 ms
11,008 KB
testcase_05 AC 33 ms
10,880 KB
testcase_06 AC 33 ms
11,008 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 32 ms
10,880 KB
testcase_09 AC 34 ms
10,880 KB
testcase_10 AC 235 ms
21,452 KB
testcase_11 AC 238 ms
21,716 KB
testcase_12 AC 229 ms
21,200 KB
testcase_13 AC 235 ms
21,308 KB
testcase_14 AC 250 ms
21,896 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 217 ms
21,236 KB
testcase_21 AC 215 ms
21,168 KB
testcase_22 AC 240 ms
21,156 KB
testcase_23 AC 217 ms
20,884 KB
testcase_24 AC 231 ms
21,304 KB
testcase_25 AC 223 ms
21,288 KB
testcase_26 AC 225 ms
21,012 KB
testcase_27 AC 223 ms
21,072 KB
testcase_28 AC 221 ms
21,132 KB
testcase_29 AC 237 ms
21,144 KB
testcase_30 AC 33 ms
10,880 KB
testcase_31 AC 143 ms
14,064 KB
testcase_32 AC 144 ms
14,068 KB
testcase_33 AC 128 ms
21,872 KB
testcase_34 AC 33 ms
10,880 KB
testcase_35 AC 33 ms
11,008 KB
testcase_36 AC 33 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy

N, X, Y, Z = map(int, input().split())
a = list(map(int, input().split()))
a = [i // 1000 + 1 for i in a]
a = sorted(a, reverse=True)

tmpa = copy.deepcopy(a)
tmpz = sum(map(lambda x:x//10, tmpa)) - Z

if tmpz > 0:
    tmpz *= 2
    tmpz -= Y
    if tmpz > 0:
        tmpz *= 5
        tmpz -= X
        if tmpz > 0:
            print('No')
            exit()
        else:
            X = abs(tmpz)
    else:
        Y = abs(tmpz)
    tmpz = 0

a = sorted(list(map(lambda x: x % 10, a)))

if tmpz < 0:
    a = a[:len(a) + tmpz]


tmpa = copy.deepcopy(a)
tmpy = sum(map(lambda x: x//5, tmpa)) - Y

if tmpy > 0:
    tmpy *= 5
    tmpy -= X
    if tmpy > 0:
        print('No')
        exit()
    else:
        X = abs(tmpy)
    tmpy = 0

a = sorted(list(map(lambda x: x % 5, a)))

if tmpy < 0:
    a = a[:len(a) + tmpy]
    

tmpx = sum(a) - X
print('Yes' if tmpx <= 0 else 'No')    
0