| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 24045 | Songgr | 倒数第m个数是几 | C++ | Compile Error | 0 MS | 0 KB | 170 | 2023-08-03 19:11:05 |
#include<iostream> using namespace std; int main() { int n,m; cin>>n>>m; int a[n]; for(int i=0;i<n;i++) { cin>>a[i]; } cout<<a[n-m]; return 0;