結果

問題 No.2420 Simple Problem
ユーザー Basin-BugBasin-Bug
提出日時 2023-08-12 15:16:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 369 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 77,316 KB
最終ジャッジ日時 2024-11-20 01:01:17
合計ジャッジ時間 25,119 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,128 KB
testcase_01 AC 384 ms
76,696 KB
testcase_02 AC 73 ms
72,280 KB
testcase_03 AC 200 ms
76,888 KB
testcase_04 AC 641 ms
76,888 KB
testcase_05 AC 435 ms
77,028 KB
testcase_06 AC 774 ms
77,048 KB
testcase_07 AC 782 ms
76,856 KB
testcase_08 AC 770 ms
77,092 KB
testcase_09 AC 774 ms
76,840 KB
testcase_10 AC 768 ms
76,844 KB
testcase_11 AC 772 ms
77,316 KB
testcase_12 AC 785 ms
76,884 KB
testcase_13 AC 795 ms
77,076 KB
testcase_14 AC 760 ms
76,440 KB
testcase_15 AC 766 ms
77,316 KB
testcase_16 AC 759 ms
76,800 KB
testcase_17 AC 771 ms
76,976 KB
testcase_18 AC 777 ms
77,212 KB
testcase_19 AC 771 ms
77,124 KB
testcase_20 AC 771 ms
77,316 KB
testcase_21 AC 771 ms
77,116 KB
testcase_22 AC 769 ms
76,988 KB
testcase_23 AC 781 ms
77,148 KB
testcase_24 AC 762 ms
76,844 KB
testcase_25 AC 776 ms
76,884 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 39 ms
53,408 KB
testcase_33 AC 371 ms
77,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def sqrt_by_newton(k, epsilon=0.00001):
  def f(x): return x - (x * x - k) / (2.0 * x)
  if k == 0.0:
    return 0.0
  x = k
  next_x = f(x)
  while abs(x - next_x) >= epsilon:
    x = next_x
    next_x = f(x)
  return next_x

N = int(input())
for i in range(N):
  a, b = map(int, input().split())
  m = sqrt_by_newton(a)
  n = sqrt_by_newton(b)
  print(int(m + n) + 1)
0