Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
82606 sh25_wanghy 汉堡吃鱼 C++ 通过 0 MS 256 KB 221 2026-01-16 14:55:36

Tests(1/1):


#include<iostream> #include<algorithm> using namespace std; int main(){ int n; cin>>n; int s[n]; for(int i=0;i<n;++i){ cin>>s[i]; } sort(s,s+n); cout<<s[0]; return 0; }


测评信息: