結果
問題 | No.1152 10億ゲーム |
ユーザー | Rubikun |
提出日時 | 2020-08-07 22:35:15 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,054 bytes |
コンパイル時間 | 1,779 ms |
コンパイル使用メモリ | 176,772 KB |
実行使用メモリ | 25,220 KB |
平均クエリ数 | 24.24 |
最終ジャッジ日時 | 2024-07-17 04:56:13 |
合計ジャッジ時間 | 8,577 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 83 ms
25,220 KB |
testcase_01 | AC | 80 ms
25,220 KB |
testcase_02 | AC | 81 ms
25,076 KB |
testcase_03 | AC | 81 ms
25,220 KB |
testcase_04 | AC | 80 ms
25,220 KB |
testcase_05 | AC | 81 ms
24,820 KB |
testcase_06 | AC | 81 ms
24,836 KB |
testcase_07 | AC | 81 ms
24,580 KB |
testcase_08 | AC | 80 ms
24,836 KB |
testcase_09 | AC | 80 ms
24,580 KB |
testcase_10 | AC | 80 ms
24,580 KB |
testcase_11 | AC | 80 ms
24,964 KB |
testcase_12 | AC | 80 ms
25,220 KB |
testcase_13 | AC | 80 ms
25,220 KB |
testcase_14 | AC | 80 ms
24,836 KB |
testcase_15 | AC | 81 ms
24,824 KB |
testcase_16 | AC | 79 ms
24,836 KB |
testcase_17 | AC | 81 ms
24,836 KB |
testcase_18 | AC | 79 ms
24,836 KB |
testcase_19 | AC | 81 ms
24,580 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 80 ms
24,836 KB |
testcase_23 | AC | 84 ms
25,220 KB |
testcase_24 | AC | 81 ms
25,220 KB |
testcase_25 | AC | 83 ms
24,964 KB |
testcase_26 | AC | 82 ms
25,220 KB |
testcase_27 | AC | 81 ms
24,836 KB |
testcase_28 | AC | 82 ms
24,964 KB |
testcase_29 | AC | 80 ms
24,964 KB |
testcase_30 | AC | 79 ms
25,220 KB |
testcase_31 | AC | 81 ms
24,964 KB |
testcase_32 | AC | 81 ms
24,836 KB |
testcase_33 | AC | 82 ms
24,964 KB |
testcase_34 | AC | 80 ms
24,964 KB |
testcase_35 | AC | 81 ms
24,964 KB |
testcase_36 | AC | 80 ms
24,964 KB |
testcase_37 | AC | 81 ms
25,220 KB |
testcase_38 | AC | 80 ms
25,220 KB |
testcase_39 | AC | 81 ms
25,220 KB |
testcase_40 | AC | 80 ms
25,220 KB |
testcase_41 | AC | 80 ms
24,836 KB |
testcase_42 | AC | 80 ms
24,964 KB |
testcase_43 | AC | 81 ms
24,836 KB |
testcase_44 | AC | 81 ms
25,220 KB |
testcase_45 | AC | 82 ms
24,836 KB |
testcase_46 | AC | 80 ms
24,964 KB |
testcase_47 | AC | 83 ms
24,836 KB |
testcase_48 | AC | 79 ms
24,580 KB |
testcase_49 | AC | 81 ms
24,808 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; } #define all(x) (x).begin(),(x).end() #define fi first #define se second #define mp make_pair #define si(x) int(x.size()) const int mod=1000000007,MAX=200005,INF=1<<30,D=1000000000; int main(){ std::ifstream in("text.txt"); std::cin.rdbuf(in.rdbuf()); cin.tie(0); ios::sync_with_stdio(false); int x1,x2;cin>>x1>>x2; map<int,int> MA,MA2,MA5; for(int i=0;i<10;i++){ for(int j=0;j<10;j++){ int a=1; for(int k=0;k<i;k++) a*=2; for(int k=0;k<j;k++) a*=5; MA[a]=i+j; MA2[a]=i; MA5[a]=j; } } while(1){ if(x1/2==x2||x1/5==x2||x1*2==x2||x1*5==x2||(x1==D/4&&x2==D)){ cout<<x2<<endl; return 0; } int pa=abs(MA[x1]-MA[x2])&1; if(x1==D&&pa) break; if(x1==D/2){ if(pa){ cout<<D<<endl; x1=D; }else{ cout<<D/4<<endl; x1=D/4; } }else if(x1==D/4){ if(pa){ cout<<D/2<<endl; x1=D/2; }else{ cout<<D<<endl; x1=D; } }else if(MA2[x1]>=8){ cout<<x1/2<<endl; x1/=2; }else if(MA2[x1]<7){ cout<<x1*2<<endl; x1*=2; }else{ cout<<x1*5<<endl; x1*=5; } if(x1==x2) return 0; cin>>x2; if(x1==x2) return 0; } while(1){ if(x1/2==x2||x1/5==x2||x1*2==x2||x1*5==x2||(x1==D/4&&x2==D)){ cout<<x2<<endl; return 0; } int a=MA2[x1]-MA2[x2],b=MA5[x1]-MA5[x2]; if(x1==D){ cout<<x1/2<<endl; x1/=2; }else if(x1==D/2){ cout<<x1/2<<endl; x1/=2; }else if(abs(a)==1){ if(b>0){ cout<<x1/5<<endl; x1/=5; }else{ cout<<x1*5<<endl; x1*=5; } }else if(abs(b)==1){ if(a>0){ cout<<x1/2<<endl; x1/=2; }else{ cout<<x1*2<<endl; x1*=2; } }else if(abs(a)&1){ if(a>0){ cout<<x1/2<<endl; x1/=2; }else{ cout<<x1*2<<endl; x1*=2; } }else if(abs(b)&1){ if(b>0){ cout<<x1/5<<endl; x1/=5; }else{ cout<<x1*5<<endl; x1*=5; } } cin>>x2; } }