結果
問題 | No.1930 XOR of Two Range |
ユーザー | milanis48663220 |
提出日時 | 2022-05-06 22:54:03 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 162 ms / 2,000 ms |
コード長 | 1,941 bytes |
コンパイル時間 | 1,084 ms |
コンパイル使用メモリ | 116,184 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-06 00:44:09 |
合計ジャッジ時間 | 2,208 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 148 ms
5,376 KB |
testcase_02 | AC | 162 ms
5,376 KB |
testcase_03 | AC | 158 ms
5,376 KB |
コンパイルメッセージ
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(); }