Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
137840 罗晟睿 13求n个数的最小值 C++ Accepted 1 MS 272 KB 208 2025-11-22 18:07:30

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int n,x; int min=10000000; cin>>n; for(int i=1;i<=n;i++){ cin>>x; if(x<min) min=x; } cout<<min<<endl; return 0; }