Toggle navigation
编绘童年
F.A.Qs
ProblemSet
Source/Category
Status
Ranklist
Contest
Login
Problem2486--寒假1-输入n个数字输出7出现的位置
2486: 寒假1-输入n个数字输出7出现的位置
Time Limit:
1
Sec
Memory Limit:
128 MB
Submit:
440
Solved:
362
[
Status
] [
Submit
] [Creator:
]
Description
先输入一个数字n,然后输入n个数字,输出数字7所在的位置。(输入内容中数字7仅出现一次)
Input
输入为两行。
第一行为n,表示整数序列的长度(n<=100)。
第二行为n个正整数,每两个数之间用一个空格隔开。
Output
仅一个数,为数字7出现的位置。
Sample Input
Copy
10 1 2 4 5 7 8 9 11 3 45
Sample Output
Copy
5
Source/Category
基础B