結果

問題 No.1015 おつりは要らないです
ユーザー vwxyzvwxyz
提出日時 2024-07-17 02:45:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 415 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,660 KB
最終ジャッジ日時 2024-07-17 02:45:54
合計ジャッジ時間 10,563 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 415 ms
21,224 KB
testcase_11 AC 393 ms
21,512 KB
testcase_12 AC 379 ms
21,024 KB
testcase_13 AC 414 ms
21,232 KB
testcase_14 AC 409 ms
21,648 KB
testcase_15 AC 373 ms
21,024 KB
testcase_16 AC 411 ms
21,216 KB
testcase_17 AC 400 ms
21,528 KB
testcase_18 AC 391 ms
21,180 KB
testcase_19 AC 412 ms
21,152 KB
testcase_20 AC 358 ms
21,180 KB
testcase_21 AC 364 ms
21,032 KB
testcase_22 AC 371 ms
21,084 KB
testcase_23 AC 351 ms
20,744 KB
testcase_24 AC 367 ms
21,220 KB
testcase_25 AC 369 ms
21,088 KB
testcase_26 AC 359 ms
21,064 KB
testcase_27 AC 363 ms
20,864 KB
testcase_28 AC 350 ms
20,984 KB
testcase_29 AC 389 ms
21,116 KB
testcase_30 AC 29 ms
10,752 KB
testcase_31 AC 325 ms
12,640 KB
testcase_32 AC 312 ms
12,768 KB
testcase_33 AC 326 ms
21,660 KB
testcase_34 AC 30 ms
10,752 KB
testcase_35 AC 29 ms
10,752 KB
testcase_36 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

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]//M,XYZ)
        XYZ-=c
        A[i]-=c*M
    A.sort()
    for i in range(N-1,-1,-1):
        if XYZ:
            A[i]=0
            XYZ-=1
if all(a==0 for a in A):
    ans="Yes"
else:
    ans="No"
print(ans)
0