Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132536 成书骏 13求n个数的最小值 C++ Wrong Answer 1 MS 272 KB 435 2025-10-08 19:30:50

Tests(6/10):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int a,y=100000000000000000,n; cin>>n; for(int i=1;i<=7;i++){ cin>>a; if(y>a){ y=a; } } cout<<y; return 0; }


Run Info:

------Input------
10 10 38 75 97 67 56 15 70 39 4
------Answer-----
4
------Your output-----
10