笑川不吃香菜
笑川不吃香菜
全部文章
分类
归档
标签
去牛客网
登录
/
注册
笑川不吃香菜的博客
全部文章
(共145篇)
题解 | #守形数#
#include <iostream> using namespace std; string func(int n){ int nn =n*n; if(nn<10)return "No!"; string snn = to_string...
2024-03-13
0
152
题解 | #数字阶梯求和#
import java.util.Scanner; import java.math.BigInteger; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[]...
2024-03-13
0
156
题解 | #A + B#
#include <iostream> using namespace std; int main() { string engNum[10]={"zero","one","two","three"...
2024-03-13
0
189
题解 | #哈夫曼树#
#include <bits/stdc++.h> using namespace std; int main() { int n;cin>>n; vector<int>v; while(n--){ int temp;cin...
2024-03-13
0
163
题解 | #求最大值#
#include <algorithm> #include <bits/stdc++.h> using namespace std; int main() { int n; vector<int>v; while (cin >>...
2024-03-13
0
164
题解 | #二叉树#
#include <iostream> using namespace std; int res = 0; void func(int nowIndex, int lastIndex){ if(nowIndex<=lastIndex)res++; if(nowInd...
2024-03-13
0
166
题解 | #Fibonacci#
#include <iostream> using namespace std; int main() { //dp斐波那契数列 int dp[50]; dp[0]=1; dp[1]=1; for(int i =2;i<50;i++){ ...
2024-03-13
0
146
题解 | #Problem B#
#include <bits/stdc++.h> using namespace std; int main() { int n; while(cin>>n){ vector<int>v; int arr[n][n...
2024-03-12
0
175
题解 | #整型存储#
#include <bits/stdc++.h> using namespace std; class myClass{ public: string s1[10]; string s2[10]; int count=0; }; int main() { ...
2024-03-12
0
201
题解 | #回文字符串#
#include <bits/stdc++.h> using namespace std; int main() { string s; while (getline(cin,s)) { // 注意 while 处理多个 case string s2 =...
2024-03-12
0
201
首页
上一页
3
4
5
6
7
8
9
10
11
12
下一页
末页