結果
問題 | No.598 オーバーフローファンタジー |
ユーザー | zuvizudar |
提出日時 | 2017-11-24 22:59:52 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,177 bytes |
コンパイル時間 | 610 ms |
コンパイル使用メモリ | 88,864 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-05 11:20:32 |
合計ジャッジ時間 | 1,543 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 1 ms
6,944 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 1 ms
6,944 KB |
testcase_17 | AC | 1 ms
6,944 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 1 ms
6,940 KB |
testcase_20 | AC | 1 ms
6,940 KB |
testcase_21 | AC | 1 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | WA | - |
testcase_25 | AC | 1 ms
6,944 KB |
testcase_26 | AC | 1 ms
6,940 KB |
testcase_27 | AC | 2 ms
6,944 KB |
testcase_28 | WA | - |
testcase_29 | AC | 1 ms
6,944 KB |
testcase_30 | AC | 1 ms
6,944 KB |
ソースコード
#include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<ctime> #include<cctype> #include<climits> #include<iostream> #include<string> #include<vector> #include<map> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<memory> #include<functional> #include<set> using namespace std; #define ALL(g) (g).begin(),(g).end() #define REP(i, x, n) for(int i = x; i < n; i++) #define rep(i,n) REP(i,0,n) #define P(p) cout<<(p)<<endl; #define p(p) cout<<(p)<<" "; #define pb push_back #define mp make_pair #define INF 1<<25 typedef vector<int> vi; typedef vector<vi> vvi; typedef vector<string> vs; typedef pair<int, int> pi; typedef long long ll; //int dy[8]={1,1,1,0,0,-1,-1,-1}; //int dx[8]={-1,0,1,-1,1,-1,0,1}; int dx[4]={0,1,0,-1}; int dy[4]={1,0,-1,0}; struct S{ int a,b,c; }; bool asc(const S& left,const S& right){ return left.c > right.c; } int N,M,l,r,X,A,B; void input(){ cin>>N>>X>>A>>B; } int main(){ cin.tie(0); ios::sync_with_stdio(false); input(); int b=((1<<(N-1))-X)/B; if(((1<<(N-1))-X)%B!=0)b++; int a=X/A; if(a%A!=0)a++; P(min(a,b)) return 0; }