結果

問題 No.2420 Simple Problem
ユーザー sepa38sepa38
提出日時 2023-07-17 12:21:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 684 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-09-17 21:24:29
合計ジャッジ時間 20,995 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 305 ms
76,544 KB
testcase_02 AC 65 ms
68,096 KB
testcase_03 AC 163 ms
75,904 KB
testcase_04 AC 538 ms
76,160 KB
testcase_05 AC 360 ms
76,416 KB
testcase_06 AC 613 ms
76,032 KB
testcase_07 AC 654 ms
76,032 KB
testcase_08 AC 642 ms
76,032 KB
testcase_09 AC 647 ms
75,904 KB
testcase_10 AC 635 ms
75,904 KB
testcase_11 AC 628 ms
76,416 KB
testcase_12 AC 632 ms
75,776 KB
testcase_13 AC 613 ms
76,288 KB
testcase_14 AC 618 ms
76,032 KB
testcase_15 AC 616 ms
76,288 KB
testcase_16 AC 610 ms
76,416 KB
testcase_17 AC 626 ms
76,032 KB
testcase_18 AC 627 ms
76,160 KB
testcase_19 AC 630 ms
75,904 KB
testcase_20 AC 625 ms
75,904 KB
testcase_21 AC 616 ms
75,776 KB
testcase_22 AC 642 ms
75,904 KB
testcase_23 AC 684 ms
76,032 KB
testcase_24 AC 631 ms
75,904 KB
testcase_25 AC 633 ms
75,776 KB
testcase_26 AC 40 ms
52,096 KB
testcase_27 AC 513 ms
76,288 KB
testcase_28 AC 516 ms
76,160 KB
testcase_29 AC 518 ms
76,416 KB
testcase_30 AC 511 ms
76,032 KB
testcase_31 AC 500 ms
76,032 KB
testcase_32 AC 34 ms
51,840 KB
testcase_33 AC 293 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
  a, b = map(int, input().split())
  l, r = -1, 1 << 16
  while r - l > 1:
    x = (l + r) // 2
    if 0 < (x ** 2 - (a + b)) ** 2 - 4 * a * b and x ** 2 - (a + b) > 0:
      r = x
    else:
      l = x
  print(r)
0