結果

問題 No.2420 Simple Problem
ユーザー rlangevinrlangevin
提出日時 2023-09-03 15:24:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 757 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 85,072 KB
最終ジャッジ日時 2024-06-12 21:08:18
合計ジャッジ時間 24,056 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,552 KB
testcase_01 AC 342 ms
79,756 KB
testcase_02 AC 54 ms
70,992 KB
testcase_03 AC 180 ms
77,828 KB
testcase_04 AC 570 ms
82,676 KB
testcase_05 AC 395 ms
80,600 KB
testcase_06 AC 721 ms
84,088 KB
testcase_07 AC 714 ms
83,924 KB
testcase_08 AC 726 ms
84,188 KB
testcase_09 AC 711 ms
84,468 KB
testcase_10 AC 723 ms
84,484 KB
testcase_11 AC 716 ms
84,448 KB
testcase_12 AC 735 ms
84,460 KB
testcase_13 AC 706 ms
84,128 KB
testcase_14 AC 757 ms
84,212 KB
testcase_15 AC 742 ms
84,400 KB
testcase_16 AC 747 ms
84,600 KB
testcase_17 AC 727 ms
84,952 KB
testcase_18 AC 703 ms
84,420 KB
testcase_19 AC 729 ms
85,072 KB
testcase_20 AC 735 ms
84,596 KB
testcase_21 AC 679 ms
84,056 KB
testcase_22 AC 728 ms
85,036 KB
testcase_23 AC 724 ms
84,412 KB
testcase_24 AC 693 ms
84,192 KB
testcase_25 AC 699 ms
84,436 KB
testcase_26 AC 43 ms
60,788 KB
testcase_27 AC 571 ms
82,436 KB
testcase_28 AC 560 ms
82,984 KB
testcase_29 AC 556 ms
82,452 KB
testcase_30 AC 589 ms
82,260 KB
testcase_31 AC 566 ms
82,396 KB
testcase_32 AC 36 ms
53,332 KB
testcase_33 AC 342 ms
79,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from math import sqrt, ceil

def isqrt(n):
    yes = 0
    no = 10 ** 18
    while no - yes != 1:
        mid = (yes + no)//2
        if mid * mid <= n:
            yes = mid
        else:
            no = mid
    return yes * yes == n, yes
    

N = int(input())
for _ in range(N):
    A, B = map(int, input().split())
    fa, na = isqrt(A)
    fb, nb = isqrt(B)
    if fa and fb:
        print(na + nb + 1)
    else:
        print(ceil(sqrt(A) + sqrt(B)))
0