| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 77696 | sh25_wanghy | 查找特定的值 | C++ | Accepted | 0 MS | 244 KB | 381 | 2025-12-26 14:40:46 |
#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; }