結果
問題 | No.353 ヘイトプラス |
ユーザー | 小指が強い人 |
提出日時 | 2016-04-01 22:29:23 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 574 bytes |
コンパイル時間 | 385 ms |
コンパイル使用メモリ | 55,192 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-10-02 09:13:38 |
合計ジャッジ時間 | 1,793 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
ソースコード
#include <iostream> using namespace std; typedef long long ll; int main(void) { ll a,b,res=0; cin>>a>>b; bool cc=false; for(int i=0;i<40;i++){ int m=1<<i; bool aa=a&m; bool bb=b&m; if(aa&&bb&&cc){ res|=m; cc=true; } else if(aa&&bb&&!cc||aa&&!bb&&cc||!aa&&bb&&cc){ cc=true; } else if(aa&&!bb&&!cc||!aa&&!bb&&cc||!aa&&bb&&!cc){ res|=m; cc=false; }else{ cc=false; } } cout<<res<<endl; return 0; }