| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 81395 | sh25_wuyy | 最高的分数 | C++ | Accepted | 0 MS | 240 KB | 185 | 2026-01-04 17:41:42 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,a,b=0; cin>>n; for(int i=0;i<n;i++){ cin>>a; if(a>b){ b=a; } }cout<<b<<endl; return 0; }