渡渡渡渡渡
渡渡渡渡渡
全部文章
题解
归档
标签
去牛客网
登录
/
注册
渡渡渡渡渡的博客
全部文章
/ 题解
(共4篇)
ac
#include<bits/stdc++.h> using namespace std; int main(){ bool f=0; int n,m,sum=0; cin>>n>>...
C++
数组
数学
2023-03-19
0
324
题解 | #送水#
//此题可以枚出发时的重量,但是会超时,只能拿80分。通过分析,可以先求出最小的可能,再依次加上k,就能得出正解 #include<bits/stdc++.h> using namespace std; int main() { &n...
C++
数学
枚举
2022-12-04
0
366
题解 | #简单输出#
#include<bits/stdc++.h> using namespace std; int main(){ cout<<"hello world"<<endl; &nbs...
2022-11-27
0
320
题解 | #计科182的回文字符串#
AC #include <bits/stdc++.h> using namespace std; bool hw(string a) { int la=a.size(); for(int i=0; i<la/2; i++) if(a[i]!=a[la-1-i]) return 0;...
C++
字符串
2022-11-27
1
276