perper__
perper__
全部文章
分类
归档
标签
去牛客网
登录
/
注册
perper__的博客
全部文章
(共3篇)
题解 | 无限长正整数排列字符串
#include <bits/stdc++.h> using namespace std; int main(){ int n,i=1; cin>>n; string s; while(1){ s+=to_string(i); ...
2025-11-09
0
11
题解 | 记数问题
#include <bits/stdc++.h> using namespace std; int main(){ string s; int n,x; cin>>n>>x; vector <int> v(10); ...
2025-11-06
1
13
题解 | 求四位数各个数位之和
#include <bits/stdc++.h> using namespace std; int main() { string s; int sum = 0; cin >> s; for (int i = 0; i < s.size...
2025-11-02
0
13