QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#468665 | #3013. XOR Sequences | LVJBot1 | WA | 0ms | 3704kb | C++14 | 298b | 2024-07-08 22:25:06 | 2024-07-08 22:25:07 |
Judging History
answer
/* Submission UUID: 376f522d-ca55-468f-abd1-ac340e709482. */
#include<bits/stdc++.h>
#define int long long
using namespace std;int t;int lowbit(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<<lowbit(x^y)<<'\n';}return 0;}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3704kb
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