编写题解 2901: 查找特定的值
摘要:解题思路:#include <bits/stdc++.h>using namespace std;int a,b,d;int c[1000000];int main(){ int sum=1; ……
python--study||O.o
摘要:参考代码:
def main():
n = int(input())
arr = [int(x) for x in input().split()]
find = in……
题解 2901: 查找特定的值
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N = 1e7;ll……
2901: 查找特定的值
摘要:```#include
using namespace std;
int n,x,N[100000];
int main(){
cin>>n;
for( int i=1;i>N[i];
……
C语言 指针解决问题 练手
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main ( ){ int n=0 ,x=0 ,record=1 ; int a[10500]={0} ; ……
2901: 查找特定的值
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m; scanf("%d",&n);//输入 int arr[10001]={0}……