| Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|---|
| 440416 | 徐嘉豪 | [ 2019年绍兴市第十七届少儿信息学竞赛复赛] - 听歌识曲 | C++ | 解答错误 | 0 | 1 MS | 248 KB | 183 | 2026-05-12 20:21:43 |
#include<bits/stdc++.h> using namespace std; int s[10086],n,t; int main(){ cin>>n>>t; for(int i=1;i<=n;i++){ cin>>s[i]; if(s[i]==t){ cout<<i; } } return 0; }