2119: 信息学奥赛一本通T1184-明明的随机数 摘要: #include #include #include using namespace std; int a[105]; int main() …… 题解列表 2024年03月21日 0 点赞 0 评论 132 浏览 评分:0.0
sort和unique轻松解决 摘要: #include using namespace std; #define ll long long const int maxn = 1e6 + 50; …… 题解列表 2023年12月17日 0 点赞 0 评论 103 浏览 评分:9.9
C++ 使用set容器完成去重和排序: 明明的随机数 摘要:# C++ set容器 头文件 ```c++ #include ``` ## AC代码 ```c++ #include #include using namespace std…… 题解列表 2023年06月05日 0 点赞 0 评论 130 浏览 评分:0.0
直接用set解决。。。。。。。。。。。。 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ set<int> a; int n; cin>>n; whi…… 题解列表 2023年04月07日 0 点赞 0 评论 73 浏览 评分:0.0
明明的随机数——C语言代码 摘要:####解题思路 先去重,再排序 ####注意事项 去重时下标要后退一位,防止三个重复数字!!! - #### 代码如下 ```c #include int main() …… 题解列表 2022年03月16日 0 点赞 0 评论 222 浏览 评分:0.0
信息学奥赛一本通T1184-明明的随机数 摘要:n=int(input()) list1=list(map(int,input().split())) list1=list(set(list1)) print(len(list1)) lis…… 题解列表 2022年02月10日 0 点赞 0 评论 209 浏览 评分:9.9
明明的随机数 (Java代码) 摘要:import java.util.Arrays; import java.util.HashSet; import java.util.Scanner; public class Main …… 题解列表 2022年02月04日 0 点赞 0 评论 190 浏览 评分:9.9
明明的随机数--题解 摘要: import java.util.ArrayList; import java.util.Collection; import java.util.Collections;…… 题解列表 2021年03月31日 0 点赞 0 评论 301 浏览 评分:9.9
信息学奥赛一本通T1184-明明的随机数-题解(C++代码) 摘要:这道题很简单; 我们只需要用数组的方法就可以了; 排序方法都是可以的; 我用的是冒泡; ```cpp #include using namespace std; long lon…… 题解列表 2020年12月16日 0 点赞 0 评论 555 浏览 评分:9.9
信息学奥赛一本通T1184-明明的随机数-题解(C++代码)普通简洁做法 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <algorithm> using namespace std; int a[105], n, m, pr…… 题解列表 2020年11月24日 0 点赞 0 评论 567 浏览 评分:8.6