結果

問題 No.2420 Simple Problem
ユーザー moharan627moharan627
提出日時 2023-08-12 14:55:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 484 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 80,428 KB
最終ジャッジ日時 2024-11-19 22:13:37
合計ジャッジ時間 17,434 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 247 ms
78,080 KB
testcase_02 AC 62 ms
69,888 KB
testcase_03 AC 150 ms
77,056 KB
testcase_04 AC 384 ms
79,432 KB
testcase_05 AC 280 ms
78,848 KB
testcase_06 AC 464 ms
80,224 KB
testcase_07 AC 459 ms
80,384 KB
testcase_08 AC 460 ms
80,000 KB
testcase_09 AC 450 ms
80,200 KB
testcase_10 AC 484 ms
80,128 KB
testcase_11 AC 451 ms
80,256 KB
testcase_12 AC 456 ms
79,616 KB
testcase_13 AC 455 ms
80,352 KB
testcase_14 AC 466 ms
80,344 KB
testcase_15 AC 453 ms
80,256 KB
testcase_16 AC 458 ms
80,428 KB
testcase_17 AC 454 ms
80,356 KB
testcase_18 AC 458 ms
79,892 KB
testcase_19 AC 458 ms
79,872 KB
testcase_20 AC 455 ms
79,872 KB
testcase_21 AC 459 ms
80,000 KB
testcase_22 AC 456 ms
79,872 KB
testcase_23 AC 458 ms
80,424 KB
testcase_24 AC 449 ms
79,940 KB
testcase_25 AC 458 ms
80,128 KB
testcase_26 AC 43 ms
54,272 KB
testcase_27 AC 416 ms
79,488 KB
testcase_28 AC 407 ms
80,000 KB
testcase_29 AC 412 ms
79,488 KB
testcase_30 AC 403 ms
79,500 KB
testcase_31 AC 403 ms
79,872 KB
testcase_32 AC 42 ms
53,888 KB
testcase_33 AC 237 ms
77,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#sys.setrecursionlimit(10 ** 6)
INF = float('inf')
MOD = 10**9 + 7
MOD2 = 998244353
from collections import defaultdict
def ceil(A,B):
    return -(-A//B)
def solve():
    def II(): return int(sys.stdin.readline())
    def LI(): return list(map(int, sys.stdin.readline().split()))
    def LC(): return list(sys.stdin.readline().rstrip())
    def IC(): return [int(c) for c in sys.stdin.readline().rstrip()]
    def MI(): return map(int, sys.stdin.readline().split())
    N = II()
    from math import sqrt
    for i in range(N):
        A,B = MI()
        T = int(sqrt(A) + sqrt(B))
        for x in range(max(1,T-5),T+5):
            if(2*A*B<x**4+A**2+B**2-2*A*x*x-2*B*x*x):
                print(x)
                break
    return
solve()
0