Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
32941 | charlotteJ | 最高的分数 | C++ | 通过 | 0 MS | 244 KB | 181 | 2023-12-03 16:45:07 |
#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; }