結果

問題 No.2420 Simple Problem
ユーザー 👑 KA37RIKA37RI
提出日時 2023-08-12 18:08:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 399 bytes
コンパイル時間 595 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 79,360 KB
最終ジャッジ日時 2024-11-20 08:26:21
合計ジャッジ時間 12,079 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,456 KB
testcase_01 AC 167 ms
77,184 KB
testcase_02 AC 58 ms
64,896 KB
testcase_03 AC 125 ms
77,056 KB
testcase_04 AC 242 ms
78,080 KB
testcase_05 AC 186 ms
77,184 KB
testcase_06 AC 274 ms
78,336 KB
testcase_07 AC 277 ms
78,592 KB
testcase_08 AC 274 ms
79,360 KB
testcase_09 AC 271 ms
78,976 KB
testcase_10 AC 277 ms
78,336 KB
testcase_11 AC 273 ms
78,720 KB
testcase_12 AC 281 ms
78,976 KB
testcase_13 AC 279 ms
78,336 KB
testcase_14 AC 284 ms
78,720 KB
testcase_15 AC 276 ms
78,336 KB
testcase_16 AC 278 ms
78,592 KB
testcase_17 AC 281 ms
78,720 KB
testcase_18 AC 287 ms
78,848 KB
testcase_19 AC 275 ms
78,592 KB
testcase_20 AC 277 ms
78,976 KB
testcase_21 AC 274 ms
78,592 KB
testcase_22 AC 276 ms
78,720 KB
testcase_23 AC 275 ms
78,336 KB
testcase_24 AC 275 ms
78,464 KB
testcase_25 AC 275 ms
78,720 KB
testcase_26 AC 37 ms
52,224 KB
testcase_27 AC 238 ms
78,464 KB
testcase_28 AC 234 ms
77,824 KB
testcase_29 AC 244 ms
78,336 KB
testcase_30 AC 242 ms
77,952 KB
testcase_31 AC 239 ms
78,208 KB
testcase_32 WA -
testcase_33 AC 164 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input = stdin.readline

def solve(A, B):
  C = A + B
  D = A - B
  left = 0
  right = 63245
  while right - left > 1:
    mid = (left + right) // 2
    X2 = mid * mid
    if X2 - C >= 0 and D * D > X2 * (2 * C - X2):
      right = mid
    else:
      left = mid
  return right

N = int(input())
for _ in range(N):
  A, B = [int(x) for x in input().split()]
  print(solve(A, B))
0