結果
問題 | No.598 オーバーフローファンタジー |
ユーザー | No |
提出日時 | 2018-01-21 16:25:33 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 36 ms / 2,000 ms |
コード長 | 175 bytes |
コンパイル時間 | 379 ms |
コンパイル使用メモリ | 12,288 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-12-26 02:00:26 |
合計ジャッジ時間 | 2,388 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 28 |
ソースコード
import math n = int(input()) x = int(input()) a = int(input()) b = int(input()) m = pow(2,n - 1) ans1 = math.ceil(x / a) ans2 = math.ceil((m - x) / b) print(min(ans1,ans2))