結果

問題 No.2420 Simple Problem
ユーザー Kyoro IDKyoro ID
提出日時 2023-08-12 15:25:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 732 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 45,440 KB
最終ジャッジ日時 2024-11-20 02:05:44
合計ジャッジ時間 27,382 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
11,904 KB
testcase_01 AC 381 ms
25,600 KB
testcase_02 AC 44 ms
11,904 KB
testcase_03 AC 161 ms
16,896 KB
testcase_04 AC 712 ms
38,400 KB
testcase_05 AC 466 ms
28,928 KB
testcase_06 AC 894 ms
45,312 KB
testcase_07 AC 863 ms
45,312 KB
testcase_08 AC 871 ms
45,312 KB
testcase_09 AC 882 ms
45,312 KB
testcase_10 AC 876 ms
45,184 KB
testcase_11 AC 861 ms
45,312 KB
testcase_12 AC 876 ms
45,312 KB
testcase_13 AC 880 ms
45,184 KB
testcase_14 AC 875 ms
45,184 KB
testcase_15 AC 864 ms
45,312 KB
testcase_16 AC 873 ms
45,312 KB
testcase_17 AC 879 ms
45,312 KB
testcase_18 AC 870 ms
45,184 KB
testcase_19 AC 865 ms
45,312 KB
testcase_20 AC 894 ms
45,312 KB
testcase_21 AC 880 ms
45,312 KB
testcase_22 AC 888 ms
45,440 KB
testcase_23 AC 879 ms
45,184 KB
testcase_24 AC 880 ms
45,312 KB
testcase_25 AC 878 ms
45,312 KB
testcase_26 WA -
testcase_27 AC 704 ms
38,656 KB
testcase_28 AC 712 ms
38,528 KB
testcase_29 AC 718 ms
38,656 KB
testcase_30 AC 704 ms
38,528 KB
testcase_31 AC 703 ms
38,528 KB
testcase_32 AC 42 ms
11,904 KB
testcase_33 AC 378 ms
25,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import logging
import math
input = sys.stdin.readline
logger = logging.getLogger(__name__)


def read():
    N = int(input().strip())
    AB = []
    for i in range(N):
        a, b = map(int, input().strip().split())
        AB.append((a, b))
    return N, AB


def solve(N, AB):
    for a, b in AB:
        v = math.floor(math.sqrt(a) + math.sqrt(b))
        xs = [v-2, v-1, v, v+1, v+2]

        left = a * b * 4
        for x_i in xs:
            right = (x_i * x_i - a - b) ** 2
            if left < right:
                ans = x_i
                break
        print(ans)


if __name__ == "__main__":
    inputs = read()
    outputs = solve(*inputs)
    if outputs is not None:
        print("%s" % str(outputs))
0