导航切换
WWOJ
ProblemSet
Status
RankList
Contest
Recent
F.A.Q
Login
Login
Register
1123: 线性查找
Time Limit:
1 Sec
Memory Limit:
256 MB
Submission:
36
AC:
28
Score:
100.00
Submit
Codes
Description
现在有 n 个整数,希望你在其中找出数字 15 的下标
Input
第一行包含一个整数 n 表示有 n 个整数
第二行包含 n 个整数,保证 15 这个数字有且只出现一次
Output
输出数字 15 在这个序列中的下标,序列从 0 开始。
Samples
input:
5 1 2 3 4 15
output:
4
Source
C语言练习题
Submit
Codes