| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 336081 | 李俞家骅 | 【C2-6】排名 | C++ | Accepted | 100 | 2 MS | 252 KB | 189 | 2025-07-25 10:53:54 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,x,tt,p=1; cin>>n; for(int i=1;i<=n;i++){ cin>>x; if(i==1) tt=x; if(x>tt) p++; } cout<<p; return 0; }