P1001 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<vector>#include<algorithm>using namespace std;void is_prim…… 题解列表 2018年10月10日 0 点赞 0 评论 430 浏览 评分:0.0
P1001 (C++代码) 摘要:解题思路:首先将序列排序,然后直接利用向量(数组)找出第K大(第K小)的下标,在判断是否为素数就可以了。参考代码:#include<bits/stdc++.h> using namespace st…… 题解列表 2018年10月28日 0 点赞 0 评论 476 浏览 评分:0.0
P1001 (C语言代码)来看我的吧 摘要:解题思路:首先这个题目是多组输入测试(就是因为这个,提交了好几次,主要题目也没有说明),来说说这个题吧: 给定数据量,输入数据就不说了,想必大家早已精通这些了(哈哈);找…… 题解列表 2018年11月11日 6 点赞 3 评论 436 浏览 评分:0.0
P1001 (C语言代码)可AC 摘要:#include<stdio.h> #include"malloc.h" #include"math.h" int sort(int a[],int n,int k); int func(in…… 题解列表 2018年11月24日 0 点赞 0 评论 447 浏览 评分:0.0
P1001 (C语言代码) 摘要:解题思路:用 sort 函数对输入的数进行排序; 将得到的数进行判断是否为一个素数;注意事项:参考代码:#include<iostream>#include<algorith…… 题解列表 2018年11月30日 2 点赞 2 评论 300 浏览 评分:0.0
P1001 (C++代码) 摘要:解题思路: 用sort函数先排序,然后求出第k大的数字减去第k小的数字的值m,再判断m是否是素数即可。参考代码:#include <bits/stdc++.h> using namespace …… 题解列表 2018年12月01日 0 点赞 0 评论 375 浏览 评分:0.0
P1001 (C语言代码) 摘要:解题思路: 本来想用快速排序法的,可是时间超时了,有大佬解释一下吗?注意事项:参考代码:#include <stdio.h> #include <string.h> int a[10…… 题解列表 2019年01月21日 0 点赞 0 评论 548 浏览 评分:0.0
P1001 (C语言代码) 摘要:解题思路: 获取最大值 - 获取最小值 ,直接判断注意事项: 注意排好序 参考代码:#include<stdio.h>int isprime(int k) …… 题解列表 2019年02月03日 2 点赞 1 评论 170 浏览 评分:0.0
P1001 (C语言代码)这题小于2输出NO,我哭了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a[10000]; int i,j,m,n; scanf("%d%d",…… 题解列表 2019年03月07日 0 点赞 0 评论 290 浏览 评分:0.0
P1001 (C++代码)水一下 摘要:解题思路: 又水了一发啊参考代码:#include<bits/stdc++.h> #define hh ios::sync_with_stdio(false),cin.tie(0),cout.…… 题解列表 2019年04月17日 0 点赞 0 评论 238 浏览 评分:0.0