Kidding_Ma
Kidding_Ma
全部文章
分类
题解(51)
归档
标签
去牛客网
登录
/
注册
Kidding_Ma的博客
犯错并不可怕,放弃才可怕。
全部文章
(共46篇)
题解 | #牛客周赛 Round 131#
link A 。 #include "bits/stdc++.h" using namespace std; int main() { char c; cin >> c; if (c == 'A') { cout << "red\n...
2026-02-15
1
12
题解 | #2026牛客寒假算法基础集训营1#
ABCDEGHKL题个人正确代码。 我是验题人。 link A Python Code import sys input = sys.stdin.readline P = 998244353 di = [[1, 1, 1, 0, 1, 1, 1], [0, 0, 1, 0, 0, 1...
2026-02-03
1
35
题解 | #牛客周赛 Round 117#
link A 。 import sys input = sys.stdin.readline a, b = map(int, input().split()) if a == 1: print("LU" if b == 1 else "LD") else: print("RU" i...
2025-11-11
0
48
题解 | #牛客周赛 Round 113#
link A 各数位之和模 等于这个数模 。 。 C++ #include "bits/stdc++.h" using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); ...
2025-10-13
0
130
题解 | #牛客周赛 Round 112#
link A 。 #include "bits/stdc++.h" using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int n, k; cin &g...
2025-10-05
0
78
题解 | #牛客周赛 Round 108#
link A 。 #include "bits/stdc++.h" using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int s, s1, s2, s3; ...
2025-09-09
0
75
题解 | #牛客小白月赛120#
link A 。 #include "bits/stdc++.h" using namespace std; void solve() { int n; string s; cin >> n >> s; vector<int&g...
2025-09-05
0
68
题解 | #小红的双排列查询#
link 这里考虑维护区间众数出现次数,维护区间最值。 这里使用了莫队和 SparseTable。 。 #include <bits/stdc++.h> using namespace std; constexpr int N = 2.5E5; int sum[N + 1], z[N ...
2025-07-27
3
96
题解 | #牛客周赛 Round 99#
link A 。 #include "bits/stdc++.h" using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); string s; cin &g...
2025-07-06
18
105
题解 | #牛客周赛 Round 98#
link A 。 #include "bits/stdc++.h" using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int x; cin ...
2025-06-30
2
94
首页
上一页
1
2
3
4
5
下一页
末页