結果
問題 |
No.2420 Simple Problem
|
ユーザー |
|
提出日時 | 2023-08-25 06:41:59 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 418 bytes |
コンパイル時間 | 368 ms |
コンパイル使用メモリ | 82,272 KB |
実行使用メモリ | 181,520 KB |
最終ジャッジ日時 | 2024-12-23 16:55:12 |
合計ジャッジ時間 | 86,452 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 1 WA * 6 TLE * 26 |
ソースコード
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 = 1 y = a+b+10 while y-x>1: mid = (y+x)//2 if is_ok(mid): y = mid else: x = mid print(y)