結果

問題 No.598 オーバーフローファンタジー
ユーザー tetsuzuki1115tetsuzuki1115
提出日時 2018-04-22 17:13:00
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 491 bytes
コンパイル時間 700 ms
コンパイル使用メモリ 83,032 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-27 05:41:31
合計ジャッジ時間 1,666 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <cstring>
#include <math.h>
#include <cmath>
#include <limits.h>
#include <map>
#include <set>
#include <queue>
#include <algorithm>
#include <functional>
#include <stdio.h>
using namespace std;

long long MOD = 1000000007;

int main() {
    unsigned int N,X,A,B;
    cin >> N >> X >> A >> B;
    A = ( X/A )+( X%A ? 1 : 0 );
    B = ((1<<(N-1))-X)/B + ( ((1<<N)-X)%B ? 1 : 0 );
    cout << min( A,B ) << endl;
    return 0;
}
0