結果
問題 |
No.2420 Simple Problem
|
ユーザー |
|
提出日時 | 2023-08-25 16:45:26 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 229 ms / 2,000 ms |
コード長 | 492 bytes |
コンパイル時間 | 673 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 78,080 KB |
最終ジャッジ日時 | 2024-12-24 01:45:07 |
合計ジャッジ時間 | 10,814 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 33 |
ソースコード
from collections import * from itertools import * from functools import * from heapq import * import sys,math input = sys.stdin.readline N = int(input()) for _ in range(N): a,b = map(int,input().split()) is_ok = lambda x : 4*a*b < (x**2 - a - b)**2 x = math.floor(math.sqrt(a)+math.sqrt(b))-2 while is_ok(x): x += 1 y = x + 100 while y-x>1: mid = (y+x)//2 if is_ok(mid): y = mid else: x = mid print(y)