Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
117220 | 施宸雨 | 寻找第二小的数 | C++ | Wrong Answer | 0 MS | 272 KB | 461 | 2025-04-14 21:51:41 |
#include <iostream> using namespace std; int main(){ int n; cin>>n; int a[200]; for(int i = 0;i < n;i++){ cin>>a[i]; } int minx = 188; for(int i = 0;i < n;i++){ if (a[i] < minx){ minx = a[i]; } } int secx = 198; for(int i = 0;i < n;i++){ if (a[i] != minx && a[i] < secx){ minx = a[i]; } } if (secx == 198){ cout<<"NO\n"; } else{ cout<<secx<<"\n"; } return 0; }
------Input------
10 10 9 80 70 60 60 1 9 9 1 1 2 1 1 2 90 99 5 2 2 2 2 2 8 0 -1 -1 1 2 3 4 5 10 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 2 -4 -9 2 -0 0 2 -0 8 7 -0 0 0 -0 0 0 9
------Answer-----
9 NO 99 NO 0 NO -4 NO 8 9
------Your output-----
NO