Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
109702 | 朱悦晨 | 折半查找法 | C++ | 通过 | 100 | 1 MS | 320 KB | 295 | 2023-11-11 09:41:38 |
#include<bits/stdc++.h> using namespace std; long long nums[10001]; int n; int main() { cin>>n; for(int i =1;i <= n;i++){ cin>>nums[i]; } int m; cin>>m; for(int i =1;i <= n;i++){ if(nums[i] == m){ cout<<i<<endl; exit(0); } } cout<<-1<<endl; return 0; }