結果

問題 No.598 オーバーフローファンタジー
ユーザー Zu-rinZu-rin
提出日時 2019-08-17 23:37:44
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 55,896 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-25 09:25:37
合計ジャッジ時間 1,563 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>

using namespace std;

int main(void) {
	long long n, x, a, b, p, q;
	cin >> n >> x >> a >> b;
	p = x / a;
	if (x % a > 0)
		p++;
	x = (1ll << (n - 1)) - x;
	q = x / b;
	if (x % b > 0)
		q++;
	cout << min(p, q) << "\n";
	return 0;
}
0