ttkqwe
ttkqwe
全部文章
分类
归档
标签
去牛客网
登录
/
注册
ttkqwe的博客
全部文章
(共5篇)
题解 | 牛牛学立体
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { ios::sync_with_stdio(false), cin.tie(0); int a, b, c...
2025-10-20
0
5
题解 | 计算机内存
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { ios::sync_with_stdio(false), cin.tie(0); cout <<...
2025-10-20
0
5
题解 | あなたの蛙が帰っています
#include <bits/stdc++.h> using namespace std; typedef long long ll; const ll MOD = 998244353; // 模数 // 快速幂算法 // 功能:计算 a^b % mod // 原理:利用二进制拆...
2025-10-20
2
6
题解 | 复读机
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { ios::sync_with_stdio(false), cin.tie(0); cout <<...
2025-10-19
1
8
题解 | 魔导师晨拥
#include <bits/stdc++.h> using namespace std; int main() { int n, m; cin >> n >> m; vector<int> a(n); int damage = 2; i...
2025-10-15
1
13