結果

問題 No.598 オーバーフローファンタジー
ユーザー 👑 rin204rin204
提出日時 2022-01-19 23:03:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 160 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 51,968 KB
最終ジャッジ日時 2024-11-23 14:07:12
合計ジャッジ時間 2,537 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
x = int(input())
a = int(input())
b = int(input())

ans1 = (x + a - 1) // a
y = 2 ** (n - 1) - x
ans2 = (y + b - 1) // b
print(min(ans1, ans2))
0