主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
wyz5008
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
5
发帖
0
笔记
0
Ta的粉丝
211
关注数
0
粉丝数
211
获赞数
1
阅读数
8893
打印极值点下标 题解:
#include <cstdio> #include <iostream> using namespace std; int main() { int n; while(~scanf("%d",&n)) { ...
P1237
2023年5月10日 17:39
回复 0
|
赞 0
|
浏览 675
找最小数 题解:
因为只需要求一个最小数,我们不需要接受完数组再作操作,而是按照要求一边接受,一边判断最小值,最后直接输出即可。 #include<cstdio> #include<iostream> #include<algorithm> using nam...
P1374
2023年5月10日 17:21
回复 0
|
赞 1
|
浏览 984
整数奇偶排序 题解:
就是先小到大排序,然后逆序输出奇数,顺序输出偶数。 个人觉得这种方法比自定义排序简单多了 #include <cstdio> #include <iostream> #include <algorithm> using namesp...
P1248
2023年5月9日 12:27
回复 0
|
赞 0
|
浏览 1.0k
拿前面买饮料的题目试了一下,直接过了
while True: try: x, n = map(int, (input().split())) if x == n == -1: break drink = [0 for i in range...
P1307
2023年3月11日 00:05
回复 0
|
赞 0
|
浏览 3.4k
直接sort
n = int(input()) x = [0 for i in range(n)] for i in range(n): x[i] = input() x.sort() for i in x: print(i)
P1217
2023年3月7日 18:49
回复 0
|
赞 0
|
浏览 2.8k
本科学校:sicau
目标学校:苏州大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!