-
Notifications
You must be signed in to change notification settings - Fork 0
/
D_Xor.cpp
56 lines (45 loc) · 800 Bytes
/
D_Xor.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#include <bits/stdc++.h>
#define int long long
#define endl '\n'
#define fast \
ios_base::sync_with_stdio(0); \
cin.tie(nullptr);
using namespace std;
signed main()
{
int a , b ,q;
cin >> a >> b >> q;
int ans =q%3;
if(ans == 1)
{
cout << a;
}
else
if(ans == 2)
cout << b;
else
cout << (a^b);
}
/*signed main()
{
int a , b ,q;
cin >> a >> b >> q;
int f[q+1] = {0};
f[0] = a;
f[1] = b;
set<int>s;
s.insert(f[0]);
s.insert(f[1]);
for (int i=2; i<q;i++)
{
f[i] = f[i-1]^f[i-2];
if(s.count(f[i]) == 0)
{
s.insert(f[i]);
}
else
break;
}
int k=s.size();
cout << f[(q-1)%k] << endl;
}*/