結果

問題 No.598 オーバーフローファンタジー
ユーザー squidsquid
提出日時 2017-11-24 22:34:42
言語 C++11
(gcc 13.3.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 385 bytes
コンパイル時間 1,403 ms
コンパイル使用メモリ 157,400 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-26 01:38:25
合計ジャッジ時間 2,334 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int n;
unsigned long long int a,b,x,maxi;

int main(){

    cin>>n>>x>>a>>b;

    maxi=1<<(n-1);
    if(x/a+!!(x%a)<(maxi-x)/b+!!((maxi-x)%b)){
        //cout<<maxi<<' '<<'a'<<endl;
        cout<<x/a+!!(x%a)<<endl;
    }
    else{
        //cout<<maxi<<' '<<'b'<<endl;
        cout<<(maxi-x)/b+!!((maxi-x)%b)<<endl;
    }

    return 0;
}
0