| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 78631 | sh25_wuyy | 查找特定的值 | C++ | Accepted | 0 MS | 248 KB | 313 | 2025-12-27 09:03:31 |
#include<iostream> using namespace std; int main(){ int N,m,n; cin>>N; int arr[666]; for(int i=0;i<N;i++){ cin>>arr[i]; } cin>>m; for(int i=N;i>0;i--){ if(arr[i]==m){ n=i; } } cout<<n+1<<endl; return 0; }