結果
問題 | No.1015 おつりは要らないです |
ユーザー | None |
提出日時 | 2021-05-01 07:42:54 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 493 bytes |
コンパイル時間 | 152 ms |
コンパイル使用メモリ | 82,816 KB |
実行使用メモリ | 87,424 KB |
最終ジャッジ日時 | 2024-07-19 10:37:24 |
合計ジャッジ時間 | 4,758 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,352 KB |
testcase_01 | AC | 35 ms
52,480 KB |
testcase_02 | AC | 38 ms
51,840 KB |
testcase_03 | AC | 38 ms
52,352 KB |
testcase_04 | AC | 34 ms
52,224 KB |
testcase_05 | WA | - |
testcase_06 | AC | 35 ms
52,096 KB |
testcase_07 | AC | 35 ms
52,352 KB |
testcase_08 | AC | 34 ms
52,096 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 83 ms
86,272 KB |
testcase_16 | AC | 85 ms
86,528 KB |
testcase_17 | AC | 86 ms
87,424 KB |
testcase_18 | AC | 84 ms
86,272 KB |
testcase_19 | AC | 85 ms
86,528 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 | 36 ms
51,968 KB |
testcase_31 | AC | 65 ms
80,128 KB |
testcase_32 | AC | 63 ms
80,000 KB |
testcase_33 | AC | 70 ms
87,424 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 35 ms
52,336 KB |
ソースコード
N,X,Y,Z=map(int, input().split()) A=list(map(int, input().split())) A.sort(reverse=True) for a in A: if X<0 or Y<0 or Z<0: print("No") exit() z=min(a//10000,Z) a-=z*10000 Z-=z if a<0: continue if Y==X==0: Z-=1 continue y=min(a//10000,Y) a-=y*5000 Y-=y if a<0: continue if X==0: Y-=1 continue x=(a-1)//1000 + 1 X-=x if X<0 or Y<0 or Z<0: print("No") exit() print("Yes")