結果

問題 No.2420 Simple Problem
ユーザー sepa38sepa38
提出日時 2023-07-17 12:20:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,790 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 580 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 77,628 KB
最終ジャッジ日時 2024-05-21 09:09:42
合計ジャッジ時間 54,025 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,200 KB
testcase_01 AC 770 ms
76,720 KB
testcase_02 AC 73 ms
76,008 KB
testcase_03 AC 318 ms
76,696 KB
testcase_04 AC 1,387 ms
77,232 KB
testcase_05 AC 923 ms
76,540 KB
testcase_06 AC 1,734 ms
77,348 KB
testcase_07 AC 1,762 ms
77,384 KB
testcase_08 AC 1,725 ms
77,516 KB
testcase_09 AC 1,728 ms
77,572 KB
testcase_10 AC 1,726 ms
77,512 KB
testcase_11 AC 1,737 ms
77,016 KB
testcase_12 AC 1,740 ms
77,552 KB
testcase_13 AC 1,712 ms
77,484 KB
testcase_14 AC 1,752 ms
77,508 KB
testcase_15 AC 1,790 ms
77,628 KB
testcase_16 AC 1,730 ms
77,584 KB
testcase_17 AC 1,728 ms
77,236 KB
testcase_18 AC 1,767 ms
77,260 KB
testcase_19 AC 1,745 ms
77,440 KB
testcase_20 AC 1,728 ms
77,176 KB
testcase_21 AC 1,760 ms
77,088 KB
testcase_22 AC 1,731 ms
77,224 KB
testcase_23 AC 1,730 ms
77,208 KB
testcase_24 AC 1,718 ms
76,952 KB
testcase_25 AC 1,749 ms
77,548 KB
testcase_26 AC 41 ms
54,492 KB
testcase_27 AC 1,403 ms
77,188 KB
testcase_28 AC 1,411 ms
77,324 KB
testcase_29 AC 1,425 ms
77,092 KB
testcase_30 AC 1,390 ms
77,028 KB
testcase_31 AC 1,404 ms
76,968 KB
testcase_32 AC 38 ms
51,968 KB
testcase_33 AC 755 ms
76,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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