P1036-题解(Python代码)不知道运行超时没有?有待改善 摘要:```python n = int(input()) a = [] c = [] for i in range(n): b =input() a.append(b) …… 题解列表 2020年12月21日 0 点赞 0 评论 287 浏览 评分:0.0
利用hash二维数组统计不同数字出现的次数 摘要:参考代码:#include<stdio.h> #include<stdlib.h> int l=0; int f(int hash[][2],int n); int main() { i…… 题解列表 2023年11月11日 0 点赞 0 评论 110 浏览 评分:0.0
P1036-题解(C++代码)(没招啊!!!) 摘要:注: 这题我做得特别麻烦,不建议大家借鉴我的代码,我代码写得比较乱,我估计你们也看不懂。要是能够有方法给结构体排序,我就有更简洁的方法做。。。 如果有更好的方法,欢迎大家在评论区留言。 程序实现…… 题解列表 2019年08月12日 0 点赞 0 评论 366 浏览 评分:0.0
1303: 统计数字(C++ STL) 摘要:# STL map ```c++ #include #include #include #include #include using namespace std; mapnums; …… 题解列表 2023年08月18日 0 点赞 0 评论 86 浏览 评分:0.0
P1036 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<cstdlib> #include<algorithm> #includ…… 题解列表 2018年02月25日 0 点赞 0 评论 802 浏览 评分:0.0
题目 1303: 统计数字题解 摘要:参考代码:#include<iostream> #include<algorithm> using namespace std; int a[500001],n,ans=1; int main…… 题解列表 2023年06月07日 0 点赞 0 评论 72 浏览 评分:0.0
(C语言代码)关键是要减少循环 摘要: #include <string.h> #include <stdio.h> #include <stdlib.h> #include <math.h> int fun(const v…… 题解列表 2021年02月24日 0 点赞 1 评论 239 浏览 评分:4.7
P1036-题解(C++代码) 摘要:终于接触到结构体数组的排序了,还是用sort函数排序。。。 感觉这题的思路有点像参加蓝桥杯比赛的用户注册与参赛记录更新过程,先以此做比 程序实现: ```cpp #include #incl…… 题解列表 2019年08月13日 0 点赞 0 评论 398 浏览 评分:6.0
题解 1303: P1036 (Java代码) 摘要:import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; impo…… 题解列表 2022年06月03日 0 点赞 0 评论 136 浏览 评分:9.9
1303: 统计数字 摘要:```cpp #include using namespace std; int a[500001],n,ans=1; void qs(int l,int r) { int m=a…… 题解列表 2023年04月22日 0 点赞 0 评论 140 浏览 评分:9.9