| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 39242 | Songgr | 最高的分数 | C++ | Accepted | 0 MS | 248 KB | 189 | 2024-01-31 14:31:04 |
#include<iostream> using namespace std; int main() { int n,maxn,num; cin>>n; maxn=0; while(n--){ cin>>num; if(num>maxn){ maxn=num; } } cout<<maxn; return 0; }