結果
問題 | No.1015 おつりは要らないです |
ユーザー | komkompi |
提出日時 | 2023-11-04 10:10:35 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 606 bytes |
コンパイル時間 | 308 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 91,264 KB |
最終ジャッジ日時 | 2024-09-25 21:54:27 |
合計ジャッジ時間 | 7,627 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,096 KB |
testcase_01 | AC | 38 ms
52,096 KB |
testcase_02 | AC | 38 ms
52,096 KB |
testcase_03 | AC | 38 ms
52,864 KB |
testcase_04 | AC | 39 ms
52,224 KB |
testcase_05 | AC | 37 ms
52,352 KB |
testcase_06 | AC | 39 ms
52,480 KB |
testcase_07 | AC | 41 ms
52,608 KB |
testcase_08 | AC | 41 ms
52,224 KB |
testcase_09 | AC | 41 ms
52,224 KB |
testcase_10 | AC | 241 ms
90,496 KB |
testcase_11 | AC | 255 ms
90,368 KB |
testcase_12 | AC | 244 ms
90,240 KB |
testcase_13 | AC | 258 ms
90,240 KB |
testcase_14 | AC | 254 ms
90,496 KB |
testcase_15 | AC | 246 ms
90,112 KB |
testcase_16 | AC | 245 ms
90,624 KB |
testcase_17 | AC | 270 ms
90,368 KB |
testcase_18 | AC | 251 ms
90,496 KB |
testcase_19 | AC | 260 ms
90,240 KB |
testcase_20 | AC | 250 ms
89,984 KB |
testcase_21 | AC | 234 ms
89,856 KB |
testcase_22 | AC | 240 ms
89,856 KB |
testcase_23 | AC | 231 ms
89,856 KB |
testcase_24 | AC | 242 ms
90,496 KB |
testcase_25 | AC | 244 ms
89,984 KB |
testcase_26 | AC | 240 ms
89,856 KB |
testcase_27 | AC | 245 ms
89,984 KB |
testcase_28 | AC | 236 ms
90,368 KB |
testcase_29 | AC | 243 ms
90,496 KB |
testcase_30 | AC | 39 ms
52,480 KB |
testcase_31 | AC | 105 ms
88,064 KB |
testcase_32 | AC | 105 ms
88,576 KB |
testcase_33 | AC | 116 ms
91,264 KB |
testcase_34 | AC | 39 ms
52,096 KB |
testcase_35 | AC | 40 ms
52,352 KB |
testcase_36 | RE | - |
ソースコード
# coding: utf-8 # Your code here! import heapq as hq N,X,Y,Z=map(int,input().split()) A=list(map(lambda x:-int(x),input().split())) hq.heapify(A) for money,n in zip([10000,5000,1000],[Z,Y,X]): while n>0: shop=hq.heappop(A) use=min(-shop//money,n) if use==0: hq.heappush(A,shop) break else: shop+=use*money n-=use hq.heappush(A,shop) while A: if n==0: break else: garbage=hq.heappop(A) n-=1 if A: print("No") else: print("Yes")