senatusthug
senatusthug
全部文章
分类
归档
标签
去牛客网
登录
/
注册
senatusthug的博客
全部文章
(共4篇)
题解 | #整除问题#
#include <algorithm> #include <climits> #include <iostream> #include <cmath> #include <vector> using namespace std; // 质...
2024-06-06
1
131
题解 | #进制转换2#
#include <iostream> #include <string> using namespace std; int char2int(char in) { if(in >= '0' && in <= '9') { ...
2024-06-04
0
132
题解 | #字符串匹配#
#include <iostream> #include <string> #include <vector> using namespace std; bool cmp(char a1, char a2) { if(a1 == a2 || abs(a1...
2024-06-02
0
147
题解 | #单词替换#
#include <iostream> #include <string> using namespace std; int main() { string S, s; int pos; while (getline(cin, S)) { ...
2024-05-31
1
169