魏老四OJ
Home
ProblemSet
Source/Category
Contest
题单
Status
Ranklist
F.A.Qs
ContestProblemSetList
Login
Problem A: 【入门】数组元素的查找
Memory Limit:16 MB
Time Limit:1.000 S
:
Creator:
Submit:23
Solved:14
Submit
Description
给你m个整数,查找其中有无值为n的数,有则输出该数第一次出现的位置,没有则输出-1。
Input
第一行一个整数m:数的个数 ( 0 <= m <= 100 ) 第二行m个整数(空格隔开)( 这些数在 0-1000000范围内 ) 第三行为要查找的数n;
Output
n的位置或-1
Sample Input
4 1 2 3 3 3
Sample Output
3