結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
12,032 KB
testcase_01 AC 516 ms
25,600 KB
testcase_02 AC 45 ms
12,032 KB
testcase_03 AC 212 ms
17,024 KB
testcase_04 AC 967 ms
38,528 KB
testcase_05 AC 627 ms
28,928 KB
testcase_06 AC 1,191 ms
45,440 KB
testcase_07 AC 1,183 ms
45,312 KB
testcase_08 AC 1,196 ms
45,312 KB
testcase_09 AC 1,268 ms
45,440 KB
testcase_10 AC 1,167 ms
45,440 KB
testcase_11 AC 1,185 ms
45,312 KB
testcase_12 AC 1,210 ms
45,440 KB
testcase_13 AC 1,159 ms
45,312 KB
testcase_14 AC 1,158 ms
45,312 KB
testcase_15 AC 1,169 ms
45,312 KB
testcase_16 AC 1,161 ms
45,440 KB
testcase_17 AC 1,172 ms
45,312 KB
testcase_18 AC 1,174 ms
45,312 KB
testcase_19 AC 1,177 ms
45,312 KB
testcase_20 AC 1,163 ms
45,440 KB
testcase_21 AC 1,165 ms
45,312 KB
testcase_22 AC 1,185 ms
45,312 KB
testcase_23 AC 1,170 ms
45,312 KB
testcase_24 AC 1,176 ms
45,440 KB
testcase_25 AC 1,171 ms
45,312 KB
testcase_26 WA -
testcase_27 AC 923 ms
38,656 KB
testcase_28 AC 920 ms
38,784 KB
testcase_29 AC 948 ms
38,656 KB
testcase_30 AC 926 ms
38,656 KB
testcase_31 AC 941 ms
38,656 KB
testcase_32 AC 41 ms
12,032 KB
testcase_33 AC 499 ms
25,472 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-4, v-3, v-2, v-1, v, v+1, v+2, v+3, v+4)
        left = a * b * 4
        for x_i in xs:
            right = (x_i * x_i - a - b) * (x_i * x_i - a - b)
            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