結果
問題 | No.2420 Simple Problem |
ユーザー |
|
提出日時 | 2023-08-12 14:55:43 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 484 ms / 2,000 ms |
コード長 | 754 bytes |
コンパイル時間 | 346 ms |
コンパイル使用メモリ | 82,528 KB |
実行使用メモリ | 80,428 KB |
最終ジャッジ日時 | 2024-11-19 22:13:37 |
合計ジャッジ時間 | 17,434 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 33 |
ソースコード
import sys#sys.setrecursionlimit(10 ** 6)INF = float('inf')MOD = 10**9 + 7MOD2 = 998244353from collections import defaultdictdef ceil(A,B):return -(-A//B)def solve():def II(): return int(sys.stdin.readline())def LI(): return list(map(int, sys.stdin.readline().split()))def LC(): return list(sys.stdin.readline().rstrip())def IC(): return [int(c) for c in sys.stdin.readline().rstrip()]def MI(): return map(int, sys.stdin.readline().split())N = II()from math import sqrtfor i in range(N):A,B = MI()T = int(sqrt(A) + sqrt(B))for x in range(max(1,T-5),T+5):if(2*A*B<x**4+A**2+B**2-2*A*x*x-2*B*x*x):print(x)breakreturnsolve()