| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 69856 | sh25_ganzy | 最高的分数 | C++ | Accepted | 0 MS | 240 KB | 265 | 2025-10-11 20:37:09 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,max=0; cin>>n; int score[n]; for(int i=0;i<n;i++){ cin>>score[i]; if(score[i]>max){ max=score[i]; } } cout<<max; return 0; }