| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 13511 | 李正谦 | 最高的分数 | C++ | Accepted | 100 | 0 MS | 252 KB | 174 | 2021-02-04 11:23:56 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,m,ans=0; cin>>n; for(int i=1;i<=n;i++){ cin>>m; if(m>ans) ans=m; } cout<<ans; return 0; }