

Time Limit: 2 sec / Memory Limit: 256 MiB
配点 : 点
問題文
高橋君を含めた 人の参加者が 回のプログラミングコンテストに参加しました。 各コンテストでは全員に 位から 位までの相異なる順位がつきました。
参加者のスコアとは、 回のコンテストでの順位を掛け合わせた値です。
次のクエリ 個に答えてください。
- 個目のクエリでは、 つの正の整数 が与えられる。高橋君が 回目のコンテストで 位、 回目のコンテストで 位を取ったと仮定して、高橋君よりスコアの小さい参加者の人数の最大値を求めよ。
制約
- 入力はすべて整数である
入力
入力は以下の形式で標準入力から与えられる。
出力
クエリごとに、高橋君よりスコアの小さい参加者の人数の最大値を出力せよ。
入力例 1Copy
8 1 4 10 5 3 3 4 11 8 9 22 40 8 36 314159265 358979323
出力例 1Copy
1 12 4 11 14 57 31 671644785
回目のコンテストで 位を、 回目のコンテストで 位を取った参加者を で表すことにします。
つめのクエリでは、高橋君よりスコアの小さい参加者として が考えられます。 人以上のスコアが高橋君のスコアより小さくなることはないため、 を出力します。
Score : points
Problem Statement
participants, including Takahashi, competed in two programming contests. In each contest, all participants had distinct ranks from first through -th.
The score of a participant is the product of his/her ranks in the two contests.
Process the following queries:
- In the -th query, you are given two positive integers and . Assuming that Takahashi was ranked -th in the first contest and -th in the second contest, find the maximum possible number of participants whose scores are smaller than Takahashi's.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
For each query, print the maximum possible number of participants whose scores are smaller than Takahashi's.
Sample Input 1Copy
8 1 4 10 5 3 3 4 11 8 9 22 40 8 36 314159265 358979323
Sample Output 1Copy
1 12 4 11 14 57 31 671644785
Let us denote a participant who was ranked -th in the first contest and -th in the second contest as .
In the first query, is a possible candidate of a participant whose score is smaller than Takahashi's. There are never two or more participants whose scores are smaller than Takahashi's, so we should print .