Eclat_W
Eclat_W
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Eclat_W的博客
全部文章
(共4篇)
题解 | 猫猫与数学
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int mod = 1e9 + 7; const int N = 1e6 + 5; vector<ll> get(ll n)...
2026-04-29
1
18
题解 | 判断质数
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int mod = 1e9 + 7; const int N = 1e6 + 5; bool isPrime(ll n) { if...
2026-04-28
1
17
题解 | 空调遥控
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int mod = 1e9 + 7; const int N = 1e6 + 5; int main() { ios::sync...
2026-03-18
1
40
题解 | 小红的不动点分配
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int mod = 1e9 + 7; const int N = 1e6 + 5; int main() { ios::sync...
2026-02-09
1
40