| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 21143 | xingru | 最高的分数 | C++ | Accepted | 0 MS | 248 KB | 179 | 2023-06-23 15:14:35 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,n; float b=0; cin>>n; for(int i=0;i<n;i++){ cin>>a; if(b<a) b=a; } cout <<b; return 0; }