Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
40593 王shizhao 最高的分数 C++ 通过 1 MS 248 KB 176 2024-02-14 14:59:28

Tests(1/1):


#include<iostream> using namespace std; int main(){ int n,x,maxn=-1; cin>>n; for(int i=1;i<=n;i++){ cin>>x; if(x>maxn) maxn=x; } cout<<maxn; return 0; }


测评信息: