Anoth3r
Anoth3r
全部文章
分类
题解(25)
归档
标签
去牛客网
登录
/
注册
林月
全部文章
(共6篇)
题解 | 牛客周赛 Round 125
牛客周赛 Round 125 题解 由于牛客的渲染问题,你可以点此链接进入我的博客查看 A 小苯的选择题 分:相等 分:子序列(因为保证是升序给出) 分:剩余情况 bool subsequence(string s, string t) { int i = 0; for (...
C++
周赛
题解
2026-01-04
18
30
题解 | 牛客周赛 Round 124
牛客周赛 Round 124 题解 由于牛客的渲染问题,你可以点此链接进入我的博客查看 A 花绽晴窗含韵 直接比较就行 void solve() { int a, b; cin >> a >> b; if (a > b) cout...
C++
周赛
题解
2025-12-28
3
27
题解 | 牛客周赛 Round 122
牛客周赛 Round 122 题解 https://anoth3r.top/nkwk122/ A ICPC Problems 请输入文本 void solve() { int n; cin >> n; for (int i = 0; i < n; ++i) ...
C++
周赛
题解
2025-12-14
5
80
题解 | 牛客周赛 Round 121
牛客周赛 Round 121 题解 https://anoth3r.top/nkwk121/ A 幽幽子想吃东西 直接计算即可,如果 就 。 void solve() { int a, b, c, n; cin >> a >> b >> c &...
C++
周赛
题解
2025-12-07
8
94
题解 | 牛客周赛 Round 120
牛客周赛 Round 120 题解 https://anoth3r.top/nkwk120/ A 无穷无尽的力量 直接输出即可。 void solve() { int n; cin >> n; cout << string(n, 'a') <&l...
C++
周赛
题解
2025-11-30
12
40
题解 | 牛客周赛 Round 119
牛客周赛 Round 119 题解 https://anoth3r.top/nkwk119/ A ICPC Rank 先比题数,如果题数相同比罚时。 void solve() { int x, y, p1, p2; cin >> x >> y >>...
C++
周赛
题解
2025-11-23
11
69