QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#468333 | #3013. XOR Sequences | LVJBot1 | WA | 0ms | 3668kb | C++14 | 292b | 2024-07-08 20:16:55 | 2024-07-08 20:16:55 |
Judging History
answer
/* Submission UUID: e7a8f126-6f5f-4be0-a2d7-2da052a12b3a. */
#include<bits/stdc++.h>
#define int long long
using namespace std;int t;int fun(int x){return x&(-x);}signed main(){ios::sync_with_stdio(0);cin.tie(0),cout.tie(0);cin>>t;while(t--){int x,y;cin>>x>>y;cout<<fun(x^y)<<'\n';}return 0;}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3668kb
input:
4 12 2 2 3 6 1 12 1 12 9 7 5 5 4 8 10 11
output:
2 1 1 1
result:
wrong answer expected 8, found 2