笑川不吃香菜
笑川不吃香菜
全部文章
分类
归档
标签
去牛客网
登录
/
注册
笑川不吃香菜的博客
全部文章
(共145篇)
题解 | #最长&最短文本#
#include <bits/stdc++.h> using namespace std; int main() { string s; vector<string>v; while(getline(cin,s)) v.push_bac...
2024-03-12
0
207
题解 | #又一版 A+B#
#include <bits/stdc++.h> using namespace std; void func(int m,long x){ vector<int>v; while(x!=0){ v.push_back(x%m); ...
2024-03-12
0
170
题解 | #最大公约数1#
#include <bits/stdc++.h> using namespace std; int GCD(int a, int b) { if (b == 0)return a; else return GCD(b, a % b); } int main() { ...
2024-03-12
0
174
题解 | #邮票#
#include <bits/stdc++.h> using namespace std; int main() { set<int>s; int total = 0; for (int i = 0; i <= 5; i++) ...
2024-03-12
0
178
题解 | #对称平方数#
#include <bits/stdc++.h> using namespace std; int main() { for(int i =1;i<=256;i++){ //获取平方 int n = i*i; string s...
2024-03-12
0
177
题解 | #N的阶乘#
import java.util.Scanner; import java.math.BigInteger; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[]...
2024-03-12
0
170
题解 | #Coincidence#
#include <bits/stdc++.h> using namespace std; int main() { string s1, s2; cin >> s1 >> s2; if (s1 == "" || s2...
2024-03-12
0
185
题解 | #Problem C#
#include <bits/stdc++.h> using namespace std; bool isPrime(int n){ for(int i =2;i<=sqrt(n);i++) if(n%i == 0)return false; ret...
2024-03-12
0
200
题解 | #打牌#
#include <iostream> using namespace std; bool myFind(string myCards,int n){ string target = to_string(n); for(int i =0;i<target.leng...
2024-03-12
0
175
题解 | #计算天数#
#include <iostream> using namespace std; bool isRunNian(int year){ if(year%400 == 0)return 1; if(year%4 == 0 && year%100 !=0)re...
2024-03-12
0
209
首页
上一页
4
5
6
7
8
9
10
11
12
13
下一页
末页