結果
問題 | No.598 オーバーフローファンタジー |
ユーザー | beet |
提出日時 | 2018-07-27 15:20:16 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 397 bytes |
コンパイル時間 | 1,514 ms |
コンパイル使用メモリ | 164,996 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-01 03:31:22 |
合計ジャッジ時間 | 2,662 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 28 |
ソースコード
#include<bits/stdc++.h> using namespace std; using Int = long long; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} //INSERT ABOVE HERE signed main(){ Int n,x,a,b; cin>>n>>x>>a>>b; Int ans=(x+a-1)/a; Int y=(1LL<<(n-1))-x; chmin(ans,(y+b-1)/b); cout<<ans<<endl; return 0; }