Toggle navigation
编绘童年
F.A.Qs
ProblemSet
Source/Category
Status
Ranklist
Contest
Login
Problem1511--字符串-统计字母出现次数============分治-二分查找
1511: 字符串-统计字母出现次数============分治-二分查找
Time Limit:
1
Sec
Memory Limit:
128 MB
Submit:
316
Solved:
166
[
Status
] [
Submit
] [Creator:
]
Description
输入n(n<=10^5)个从小到大排好序的整数,输出第一个大于x的数字所在的位置。如果不存在答案,输出no
Input
第1行 元素个数n
第2行 连续n个有序的整数,用空格隔开
第3行 整数x
Output
第1个大于x的数字所在的位置,如果不存在输出no
Sample Input
Copy
5 1 3 5 7 9 6
Sample Output
Copy
4
Source/Category
提高B