| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 79468 | sh25_zhuwy | 小明十年身高 | C++ | Accepted | 0 MS | 252 KB | 203 | 2026-01-04 14:20:33 |
#include<bits/stdc++.h> using namespace std; int main() { int a[10]; int x; for(int i=0;i<10;i++) { cin>>a[i]; } cin>>x; int y=x-2000; cout<<a[y]<<endl<<a[y]-a[y-1]; return 0; }