結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,456 KB
testcase_01 AC 277 ms
75,904 KB
testcase_02 AC 60 ms
65,664 KB
testcase_03 AC 154 ms
76,416 KB
testcase_04 AC 503 ms
75,904 KB
testcase_05 AC 321 ms
76,032 KB
testcase_06 AC 582 ms
75,776 KB
testcase_07 AC 614 ms
76,288 KB
testcase_08 AC 629 ms
75,904 KB
testcase_09 AC 604 ms
75,776 KB
testcase_10 AC 590 ms
75,904 KB
testcase_11 AC 585 ms
75,904 KB
testcase_12 AC 632 ms
75,904 KB
testcase_13 AC 607 ms
75,776 KB
testcase_14 AC 587 ms
76,288 KB
testcase_15 AC 590 ms
75,904 KB
testcase_16 AC 587 ms
76,288 KB
testcase_17 AC 579 ms
75,776 KB
testcase_18 AC 603 ms
76,416 KB
testcase_19 AC 583 ms
76,032 KB
testcase_20 AC 602 ms
75,904 KB
testcase_21 AC 615 ms
76,032 KB
testcase_22 AC 584 ms
75,904 KB
testcase_23 AC 647 ms
75,904 KB
testcase_24 AC 575 ms
75,776 KB
testcase_25 AC 585 ms
76,160 KB
testcase_26 AC 36 ms
52,224 KB
testcase_27 AC 486 ms
75,648 KB
testcase_28 AC 460 ms
75,904 KB
testcase_29 AC 529 ms
76,160 KB
testcase_30 AC 506 ms
76,416 KB
testcase_31 AC 488 ms
75,776 KB
testcase_32 WA -
testcase_33 AC 274 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
  a, b = map(int, input().split())
  l, r = 0, 63245
  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