結果
問題 | No.598 オーバーフローファンタジー |
ユーザー | kohei2019 |
提出日時 | 2022-02-15 23:59:32 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 36 ms / 2,000 ms |
コード長 | 128 bytes |
コンパイル時間 | 146 ms |
コンパイル使用メモリ | 82,776 KB |
実行使用メモリ | 53,568 KB |
最終ジャッジ日時 | 2024-06-29 07:09:44 |
合計ジャッジ時間 | 2,182 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 28 |
ソースコード
N = int(input()) X = int(input()) A = int(input()) B = int(input()) ov = 2**(N-1) a = -(-X//A) b = -(-(ov-X)//B) print(min(a,b))