笑川不吃香菜
笑川不吃香菜
全部文章
分类
归档
标签
去牛客网
登录
/
注册
笑川不吃香菜的博客
全部文章
(共145篇)
题解 | #神奇的口袋#
#include <iostream> using namespace std; int res = 0,n; void func(int weight[],int nowIndex,int totalWeight){ if(totalWeight<0)return; ...
2024-03-13
0
177
题解 | #递推数列#
#include <iostream> using namespace std; int main() { int a0,a1,p,q,k; cin>>a0>>a1>>p>>q>>k; int arr[k...
2024-03-13
0
169
题解 | #单词识别#
#include <bits/stdc++.h> using namespace std; int main() { string s; vector<string>v; map<string,int>mp; while (cin ...
2024-03-13
0
185
题解 | #阶乘#
#include <iostream> using namespace std; int fac(int n){ int res = 1; for(int i =1;i<=n;i++)res*=i; return res; } int main() { ...
2024-03-13
0
202
题解 | #对称平方数1#
#include <bits/stdc++.h> using namespace std; int main() { for(int i =0;i<=256;i++){ string s1 = to_string(i*i); string s...
2024-03-13
0
179
题解 | #多项式的值#
#include <iostream> #include <cmath> using namespace std; int main() { int n;cin>>n; while(n--){ int maxPow;cin>&...
2024-03-13
0
225
题解 | #日期类#
#include <iostream> using namespace std; int main() { int n;cin>>n; while(n--){ int year,month,day; cin>>yea...
2024-03-13
0
179
题解 | #中位数#
#include <bits/stdc++.h> using namespace std; int main() { int n; while(cin>>n){ if(n==0)return 0; vector<int&g...
2024-03-13
0
182
题解 | #IP地址#
#include <bits/stdc++.h> using namespace std; int main() { string s; while(cin>>s){ int dotCount = 0; for(int i =0...
2024-03-13
0
171
题解 | #弹地小球#
#include <bits/stdc++.h> using namespace std; int main() { int m;cin>>m; while(m--){ vector<float>v; float H...
2024-03-13
0
181
首页
上一页
2
3
4
5
6
7
8
9
10
11
下一页
末页