郁梓馨 发表于 2025-8-17 23:09:57

牛客周赛 round105 (A-F)题解

牛客链接
A

思路

掌握 x^0=x 这个性质就可以秒了
题解

#include using namespace std;const int N=1e5+10;typedef long long ll;int t,n;int k;int main(){    ios::sync_with_stdio(0);    cin.tie(0);    cout.tie(0);    cin>>k;    cout
页: [1]
查看完整版本: 牛客周赛 round105 (A-F)题解