Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
109344 | I am BM | 折半查找法 | C++ | 通过 | 100 | 1 MS | 276 KB | 298 | 2023-11-08 13:34:45 |
#include<bits/stdc++.h> using namespace std; int main() { int q; cin>>q; int a[q],wei,qiu; bool yes=0; for (int t=0;t<q;t++) { cin>>a[t]; } cin>>qiu; for (int t=0;t<q;t++) { if (a[t]==qiu) { cout<<t+1; yes=1; } } if (yes==0) cout<<"-1"; return 0; }