比赛 2024年6月13日练习赛 评测结果 AAAAAAAAAA
题目名称 异或约数和 最终得分 100
用户昵称 darkMoon 运行时间 1.308 s
代码语言 C++ 内存使用 2.29 MiB
提交时间 2024-06-13 20:57:19
显示代码纯文本
#include<bits/stdc++.h>
#define int long long
using namespace std;
ifstream fin("xoradd.in");
ofstream fout("xoradd.out");
auto mread = [](){int x;fin >> x;return x;};
int n = mread(), ans;
int solve(int x){
    if(x % 4 == 1)
    return 1;
    else if(x % 4 == 2)
    return x + 1;
    else if(x % 4 == 3)
    return 0;
    return x;
}
signed main(){
    for(int i = 1; i <= n; i ++){
        int nxt = n / (n / i);
        if(n / i % 2){
            ans ^= solve(nxt) ^ solve(i - 1);
        }
        i = nxt;
    }
    fout << ans;
    return 0;
}