爱喝零度可乐
爱喝零度可乐
全部文章
分类
归档
标签
去牛客网
登录
/
注册
爱喝零度可乐的博客
全部文章
(共85篇)
题解 | #类型转换#
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); ...
2023-10-22
0
235
题解 | #采药#
#include<cstdio> #include<vector> #include<iostream> using namespace std; int main() { int t, n; int time[1000]; int val...
2023-03-25
0
300
题解 | #Primary Arithmetic#
所有的情况行云流水,还考虑到了两个数的位数不同的情况,供大家参考。 #include<cstdio> #include<stack> #include<vector> #include<string> using namespace std; int ...
2023-03-25
0
316
题解 | #Primary Arithmetic#
#include<cstdio> #include<stack> #include<vector> #include<string> using namespace std; int main() { char arr1[10]; ch...
2023-03-25
0
282
题解 | #点菜问题#
#include<cstdio> #include<vector> #include<iostream> using namespace std; int main(){ int c,n; vector<pair<int,int&g...
2023-03-25
0
375
题解 | #最简真分数#
#include<cstdio> #include<vector> using namespace std; int GDC(int a, int b) { if (b == 0) { return a; } else { re...
2023-03-23
0
330
题解 | #谁是你的潜在朋友#
这题的m没有一点作用啊?? #include<cstdio> #include<vector> using namespace std; int main(){ int n , m ; scanf("%d%d",&n,&m); int arr[n];...
2023-03-23
1
366
题解 | #查找学生信息#
#include<stdio.h> struct student { int no; char name[20]; char sex[10]; int age; } ; student s[1005]; int main() { int n...
2023-03-23
0
270
题解 | #剩下的树#
#include<cstdio> int main(){ int n,m; scanf("%d%d",&n,&m); int tree[n]; for(int i = 0 ; i < n ;++i){ tree[i] = 1; ...
2023-03-23
0
268
题解 | #N的阶乘#
#include<iostream> #include<string> #include<algorithm> using namespace std; //大数加法 string addString(string a, string b) { int c...
2023-03-23
0
337
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页