結果
問題 | No.683 Two Operations No.3 |
ユーザー | amtgjw |
提出日時 | 2018-05-22 22:26:30 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 941 bytes |
コンパイル時間 | 540 ms |
コンパイル使用メモリ | 72,392 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-06-28 15:54:40 |
合計ジャッジ時間 | 3,999 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,624 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <numeric> #include <map> #include <set> #include <complex> using namespace std; #define REP(i,n) for(int i=0;i<(n);++i) #define REPS(i,s,t) for(int i=(s);i<(t);++i) #define INF 2000000007 #define MOD 1000000007 #define MAX 200005 typedef unsigned int uint; typedef unsigned long long int ull; typedef long long int ll; //int dp[MAX]; int main(){ ull A,B;cin>>A>>B; while(A>0&&B>0){ int cnt=0; if(!(A&0)){ while(!(A&1)){cnt++;A/=2;} B-=cnt; if(B==1){ B++; A*=2; } } //cout << " AAA "; //cout << A <<" " << B << " "<<cnt<<endl; cnt=0; if(!(B&0)){ while(!(B&1)){cnt++;B/=2;} A-=cnt; if(A==1){ A++; B*=2; } } //cout << " BBB "; //cout << A <<" " << B <<" "<<cnt<<endl; if(A==2&&B==2) break; } if(A==0 || B==0) cout << "Yes\n"; else cout << "No\n"; return 0; }