結果

問題 No.1015 おつりは要らないです
ユーザー vwxyzvwxyz
提出日時 2024-07-17 02:41:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 413 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,676 KB
最終ジャッジ日時 2024-07-17 02:41:51
合計ジャッジ時間 13,108 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 33 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 498 ms
21,212 KB
testcase_16 AC 491 ms
21,236 KB
testcase_17 AC 509 ms
21,552 KB
testcase_18 AC 502 ms
20,956 KB
testcase_19 AC 524 ms
21,168 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 29 ms
10,752 KB
testcase_31 WA -
testcase_32 AC 439 ms
15,128 KB
testcase_33 AC 350 ms
21,552 KB
testcase_34 AC 30 ms
10,624 KB
testcase_35 WA -
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X,Y,Z=map(int,input().split())
A=list(map(int,input().split()))
for i in range(N):
    A[i]+=1
for XYZ,M in zip((Z,Y,X),(10000,5000,1000)):
    for i in range(N):
        c=min(A[i]//10000,XYZ)
        XYZ-=c
        A[i]-=c*10000
    A.sort()
    for i in range(N-1,-1,-1):
        if XYZ:
            A[i]=min(0,A[i]-XYZ)
            XYZ-=1
if all(a==0 for a in A):
    ans="Yes"
else:
    ans="No"
print(ans)
0