Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
104706 彭士宝 寻找第二小的数 C++ Wrong Answer 1 MS 268 KB 1037 2025-01-08 20:19:24

Tests(0/1):


Code:

#include <iostream> #include <algorithm> // 用于 std::sort using namespace std; int main() { int C; cin >> C; // 读取测试数据的组数 while (C--) { int n; cin >> n; // 读取每组测试数据的整数个数 int numbers[10]; // 假设每组最多有10个整数 for (int i = 0; i < n; ++i) { cin >> numbers[i]; // 读取每组测试数据的整数 } // 对数组进行排序 sort(numbers, numbers + n); // 寻找第二小的数,如果存在重复的最小数,则跳过它 int secondMin = numbers[0]; bool found = false; for (int i = 1; i < n; ++i) { if (numbers[i] != secondMin) { found = true; break; } } // 根据是否找到第二小的数输出结果 if (found) { cout << secondMin << endl; } else { cout << "NO" << endl; } } return 0; }


Run Info:

------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-----
1 NO 90 NO -1 NO -9 NO 0 0