Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
109341 | I am BM | 折半查找法 | C++ | 解答错误 | 30 | 1 MS | 288 KB | 296 | 2023-11-08 13:34:18 |
#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; yes=1; } } if (yes==0) cout<<"-1"; return 0; }