結果

問題 No.2420 Simple Problem
ユーザー dyktr_06dyktr_06
提出日時 2023-06-21 00:38:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 671 ms / 2,000 ms
コード長 275 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-10-15 19:55:45
合計ジャッジ時間 24,103 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 291 ms
75,904 KB
testcase_02 AC 59 ms
68,096 KB
testcase_03 AC 149 ms
75,924 KB
testcase_04 AC 540 ms
75,776 KB
testcase_05 AC 356 ms
75,776 KB
testcase_06 AC 603 ms
75,704 KB
testcase_07 AC 594 ms
76,288 KB
testcase_08 AC 624 ms
76,320 KB
testcase_09 AC 671 ms
76,544 KB
testcase_10 AC 589 ms
75,696 KB
testcase_11 AC 632 ms
75,648 KB
testcase_12 AC 662 ms
75,940 KB
testcase_13 AC 605 ms
76,160 KB
testcase_14 AC 626 ms
75,904 KB
testcase_15 AC 633 ms
76,288 KB
testcase_16 AC 602 ms
75,904 KB
testcase_17 AC 629 ms
76,160 KB
testcase_18 AC 591 ms
76,064 KB
testcase_19 AC 639 ms
75,648 KB
testcase_20 AC 611 ms
76,032 KB
testcase_21 AC 627 ms
76,084 KB
testcase_22 AC 626 ms
76,032 KB
testcase_23 AC 622 ms
76,288 KB
testcase_24 AC 590 ms
75,900 KB
testcase_25 AC 586 ms
76,312 KB
testcase_26 AC 37 ms
52,608 KB
testcase_27 AC 500 ms
76,032 KB
testcase_28 AC 508 ms
76,032 KB
testcase_29 AC 479 ms
76,160 KB
testcase_30 AC 529 ms
76,032 KB
testcase_31 AC 479 ms
75,776 KB
testcase_32 AC 36 ms
51,584 KB
testcase_33 AC 283 ms
75,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for i in range(n):
  a, b = map(int, input().split())
  ok, ng = 65000, 0
  while ok - ng > 1:
    mid = (ok + ng) // 2
    if 4 * a * b < (mid ** 2 - a - b) * (mid ** 2 - a - b) and (mid ** 2 - a - b) > 0:
      ok = mid
    else:
      ng = mid
  print(ok)
0