結果

問題 No.2420 Simple Problem
ユーザー hiryuNhiryuN
提出日時 2023-08-12 14:18:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,297 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-09-26 08:46:04
合計ジャッジ時間 39,772 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 562 ms
76,160 KB
testcase_02 AC 73 ms
72,960 KB
testcase_03 AC 244 ms
76,328 KB
testcase_04 AC 995 ms
76,344 KB
testcase_05 AC 648 ms
75,980 KB
testcase_06 AC 1,196 ms
76,544 KB
testcase_07 AC 1,217 ms
76,416 KB
testcase_08 AC 1,223 ms
76,800 KB
testcase_09 AC 1,161 ms
76,544 KB
testcase_10 AC 1,239 ms
76,084 KB
testcase_11 AC 1,238 ms
76,160 KB
testcase_12 AC 1,225 ms
76,372 KB
testcase_13 AC 1,170 ms
76,144 KB
testcase_14 AC 1,220 ms
76,416 KB
testcase_15 AC 1,297 ms
76,464 KB
testcase_16 AC 1,275 ms
76,160 KB
testcase_17 AC 1,237 ms
76,416 KB
testcase_18 AC 1,183 ms
76,288 KB
testcase_19 AC 1,266 ms
76,424 KB
testcase_20 AC 1,209 ms
76,672 KB
testcase_21 AC 1,185 ms
76,160 KB
testcase_22 AC 1,228 ms
76,288 KB
testcase_23 AC 1,214 ms
76,372 KB
testcase_24 AC 1,188 ms
76,416 KB
testcase_25 AC 1,254 ms
76,096 KB
testcase_26 AC 43 ms
60,288 KB
testcase_27 AC 980 ms
76,800 KB
testcase_28 AC 1,020 ms
76,216 KB
testcase_29 AC 995 ms
76,160 KB
testcase_30 AC 973 ms
76,092 KB
testcase_31 AC 984 ms
76,544 KB
testcase_32 AC 38 ms
51,968 KB
testcase_33 AC 534 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
for j in range(n):
    a,b=map(int,input().split())
    co=0
    for i in reversed(range(35)):
        co+=2**i
        if co**2>4*a*b:
            co-=2**i
    cco=0
    for i in reversed(range(35)):
        cco+=2**i
        if cco**2>a+b+co:
            cco-=2**i
    print(cco+1)
0