Angindem_签到版
Angindem_签到版
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Angindem_签到版的博客
全部文章
(共4篇)
题解 | 字符串分隔
#include <bits/stdc++.h> using namespace std; int main() { int cnt = 8;char c; while(cin >> c){ if(!cnt){ cou...
2025-03-11
0
28
题解 | 坐标移动
#include<bits/stdc++.h> using namespace std; int x,y; inline void movePeople(string number,char aim){ long long m = stoll(number); if(ai...
2025-03-11
0
22
题解 | 明明的随机数
#include <bits/stdc++.h> using namespace std; int main() { int n; set<int> ans; cin >> n; while(cin >> n) ans...
2025-03-11
0
22
题解 | 字符串最后一个单词的长度
#include <bits/stdc++.h> using namespace std; int main() { string last; while(cin >> last){continue;} cout << last.size(...
2025-03-11
0
29