CF1612C.Chat Ban
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are a usual chat user on the most famous streaming platform. Of course, there are some moments when you just want to chill and spam something.
More precisely, you want to spam the emote triangle of size k . It consists of 2k−1 messages. The first message consists of one emote, the second one — of two emotes, ..., the k -th one — of k emotes, the k+1 -th one — of k−1 emotes, ..., and the last one — of one emote.
For example, the emote triangle for k=3 consists of 5 messages:
Of course, most of the channels have auto moderation. Auto moderator of the current chat will ban you right after you spam at least x emotes in succession (you can assume you are the only user in the chat). Now you are interested — how many messages will you write before getting banned? Or maybe you will not get banned at all (i.e. will write all 2k−1 messages and complete your emote triangle successfully)? Note that if you get banned as a result of writing a message, this message is also counted.
You have to answer t independent test cases.
输入格式
The first line of the input contains one integer t ( 1≤t≤104 ) — the number of test cases. The next t lines describe test cases.
The only line of the test case contains integers k and x ( 1≤k≤109;1≤x≤1018 ).
输出格式
For each test case, print the number of messages you will write before getting banned for the corresponding values k and x .
输入输出样例
输入#1
7 4 6 4 7 1 2 3 7 2 5 100 1 1000000000 923456789987654321
输出#1
3 4 1 4 3 1 1608737403
说明/提示
Let's analyze the test cases of the example.
- In the first test case, you write three messages containing 1 , 2 and 3 emotes respectively, and since 1+2+3≥6 , you get banned after that.
- In the second test case, you write four messages containing 1 , 2 , 3 and 4 emotes respectively, and since 1+2+3+4≥7 , you get banned after that.
- In the third test case, you write one message containing exactly 1 emote. It doesn't get you banned, since 1<2 , but you have already finished posting your emote triangle. So you wrote one message successfully.
- In the fourth test case, you write four messages containing 1 , 2 , 3 and 2 emotes respectively, and since 1+2+3+2≥7 , you get banned after that.
- In the fifth test case, you write three messages containing 1 , 2 and 1 emote respectively. It doesn't get you banned, since 1+2+1<5 , but you have already finished posting your emote triangle. So you wrote three messages successfully.
- In the sixth test case, since x=1 , you get banned as soon as you send your first message.
- The seventh test case is too large to analyze, so we'll skip it.