結果

問題 No.2420 Simple Problem
ユーザー redoCtAredoCtA
提出日時 2023-08-12 16:43:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 304 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 77,380 KB
最終ジャッジ日時 2024-11-20 06:29:10
合計ジャッジ時間 12,480 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,096 KB
testcase_01 AC 155 ms
76,816 KB
testcase_02 AC 53 ms
65,356 KB
testcase_03 AC 95 ms
76,108 KB
testcase_04 AC 246 ms
76,788 KB
testcase_05 AC 177 ms
76,460 KB
testcase_06 AC 294 ms
77,236 KB
testcase_07 AC 299 ms
76,892 KB
testcase_08 AC 293 ms
77,184 KB
testcase_09 AC 293 ms
76,824 KB
testcase_10 AC 293 ms
76,892 KB
testcase_11 AC 295 ms
77,068 KB
testcase_12 AC 295 ms
77,152 KB
testcase_13 AC 295 ms
76,744 KB
testcase_14 AC 294 ms
76,776 KB
testcase_15 AC 293 ms
77,088 KB
testcase_16 AC 298 ms
76,904 KB
testcase_17 AC 304 ms
77,132 KB
testcase_18 AC 297 ms
77,300 KB
testcase_19 AC 296 ms
76,908 KB
testcase_20 AC 296 ms
77,328 KB
testcase_21 AC 297 ms
77,380 KB
testcase_22 AC 294 ms
76,960 KB
testcase_23 AC 296 ms
76,760 KB
testcase_24 AC 297 ms
77,092 KB
testcase_25 AC 296 ms
77,020 KB
testcase_26 AC 39 ms
52,936 KB
testcase_27 AC 247 ms
76,768 KB
testcase_28 AC 246 ms
76,860 KB
testcase_29 AC 249 ms
77,140 KB
testcase_30 AC 244 ms
77,124 KB
testcase_31 AC 246 ms
76,772 KB
testcase_32 AC 40 ms
52,668 KB
testcase_33 AC 152 ms
76,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input():
    return sys.stdin.readline().rstrip()

def main():
    N = int(input())
    for i in range(N):
        a, b = map(int, input().split())
        X = 0
        ab4 = a*b*4
        for j in range(15, -1, -1):
            x = X+2**j
            if x**2 - a - b <= 0:
                X = x
                continue
            if (x**2-a-b)**2 <= ab4:
                X = x
        print(X+1)
if __name__ == "__main__":
    main()
0