結果
| 問題 |
No.1930 XOR of Two Range
|
| コンテスト | |
| ユーザー |
sahiya
|
| 提出日時 | 2022-05-07 15:05:26 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 2,226 bytes |
| コンパイル時間 | 1,915 ms |
| コンパイル使用メモリ | 137,204 KB |
| 最終ジャッジ日時 | 2025-01-29 04:46:26 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | WA * 3 |
ソースコード
#pragma GCC target("avx2")
#pragma GCC optimize("unroll-loops")
#include <algorithm>
#include <bitset>
#include <climits>
#include <cmath>
#include <cstring>
#include <deque>
#include <forward_list>
#include <functional>
#include <iomanip>
#include <iostream>
#include <list>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>
#define ALL(x) (x).begin(), (x).end()
#define PC(x) __builtin_popcount(x)
#define PCL(x) __builtin_popcountll(x)
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
struct edge {
int to, cost, id;
};
const double PI = 3.14159265358979323846;
const double PI2 = PI * 2.0;
const double EPS = 1E-09;
const ll MOD = 1E+09 + 7; // =998244353;
const ll INFL = 1E18;
const int INFI = 1E09;
const int MAX_N = 1E+05;
ll dx[4] = { 0, -1, 0, 1 }, dy[4] = { 1, 0, -1, 0 };
int T;
int main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> T;
for (int t = 1; t <= T; ++t) {
ll l, r;
cin >> l >> r;
ll x = r - l + 1;
if (x % 2 == 0) {
ll y = x / 2;
if (y % 2 == 0) {
if (y == 2) {
cout << 1 << "\n";
} else {
cout << 0 << "\n";
}
} else {
cout << 1 << "\n";
}
} else {
ll y = (x + 1) / 2;
if (y % 2 == 0) {
ll z = y / 2;
if (z % 2 == 0) {
cout << 0 << "\n";
} else {
cout << 1 << "\n";
}
} else {
ll z = y / 2;
if (z % 2 == 0) {
cout << l + r << "\n";
} else {
cout << ((l + r) ^ 1) << "\n";
}
}
}
}
// for (int i = 0; i < N; i++) {
// for (int j = 0; j < N; j++) {
// cout << "i = " << i << ", j = " << j << ", dp = " << dp[i][j] << "\n";
// }
// }
return 0;
}
sahiya