結果
| 問題 | 
                            No.1930 XOR of Two Range
                             | 
                    
| コンテスト | |
| ユーザー | 
                             milanis48663220
                         | 
                    
| 提出日時 | 2022-05-06 22:54:03 | 
| 言語 | C++17  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 174 ms / 2,000 ms | 
| コード長 | 1,941 bytes | 
| コンパイル時間 | 1,174 ms | 
| コンパイル使用メモリ | 112,448 KB | 
| 最終ジャッジ日時 | 2025-01-29 03:59:59 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 | 
| other | AC * 3 | 
コンパイルメッセージ
main.cpp: In function ‘ll cum_xor(ll)’:
main.cpp:50:1: warning: control reaches end of non-void function [-Wreturn-type]
   50 | }
      | ^
            
            ソースコード
#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <tuple>
#include <cmath>
#include <numeric>
#include <functional>
#include <cassert>
#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
using namespace std;
typedef long long ll;
template<typename T>
vector<vector<T>> vec2d(int n, int m, T v){
    return vector<vector<T>>(n, vector<T>(m, v));
}
template<typename T>
vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){
    return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v)));
}
template<typename T>
void print_vector(vector<T> v, char delimiter=' '){
    if(v.empty()) {
        cout << endl;
        return;
    }
    for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter;
    cout << v.back() << endl;
}
ll cum_xor(ll x){
    if(x < 0) return 0;
    if(x%4 == 0) return x;
    if(x%4 == 1) return 1;
    if(x%4 == 2) return x+1;
    if(x%4 == 3) return 0;
}
void solve(){
    ll l, r; cin >> l >> r;
    if(l == r){
        cout << l+r << endl;
        return;
    }
    if((l+r)%2 == 1){
        ll cnt = (l+r)-(2*l)+1;
        ll x = cnt/2;
        if(((x+1)/2)%2 == 0) cout << 0 << endl;
        else cout << 1 << endl;
        return;
    }
    ll ans = 0;
    ll cnt = (l+r)-(2*l)+1;
    ll x = cnt/2;
    if(((x+1)/2)%2 == 1) ans = 1;
    ll y = (r-l)/2+1;
    if(y%2 == 1) ans ^= l+r;
    cout << ans << endl;
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int t; cin >> t;
    while(t--) solve();
}
            
            
            
        
            
milanis48663220