結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 37 ms
10,752 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 33 ms
10,624 KB
testcase_06 AC 33 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 437 ms
21,112 KB
testcase_11 AC 448 ms
21,412 KB
testcase_12 AC 405 ms
21,024 KB
testcase_13 AC 418 ms
21,256 KB
testcase_14 AC 460 ms
21,552 KB
testcase_15 AC 416 ms
21,084 KB
testcase_16 AC 439 ms
21,108 KB
testcase_17 AC 454 ms
21,548 KB
testcase_18 AC 438 ms
21,192 KB
testcase_19 AC 432 ms
21,168 KB
testcase_20 AC 398 ms
21,136 KB
testcase_21 AC 417 ms
20,848 KB
testcase_22 AC 411 ms
21,104 KB
testcase_23 AC 397 ms
20,764 KB
testcase_24 AC 430 ms
21,116 KB
testcase_25 AC 401 ms
21,108 KB
testcase_26 AC 405 ms
21,084 KB
testcase_27 AC 397 ms
20,888 KB
testcase_28 AC 412 ms
20,868 KB
testcase_29 AC 392 ms
21,140 KB
testcase_30 AC 29 ms
10,624 KB
testcase_31 AC 357 ms
12,660 KB
testcase_32 AC 354 ms
12,656 KB
testcase_33 AC 323 ms
21,552 KB
testcase_34 AC 29 ms
10,752 KB
testcase_35 AC 30 ms
10,752 KB
testcase_36 AC 30 ms
10,624 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]=max(0,A[i]-M)
            XYZ-=1
if all(a==0 for a in A):
    ans="Yes"
else:
    ans="No"
print(ans)
0