結果
問題 | No.2767 Add to Divide |
ユーザー | june19312 |
提出日時 | 2024-05-31 23:04:07 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 508 bytes |
コンパイル時間 | 181 ms |
コンパイル使用メモリ | 82,204 KB |
実行使用メモリ | 66,992 KB |
最終ジャッジ日時 | 2024-05-31 23:04:11 |
合計ジャッジ時間 | 4,232 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 187 ms
66,432 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
T = int(input()) #4394 993298361 for j in range(T): a,b = map(int,input().split()) if b%a == 0: print(0) continue elif b//a < 2: print(-1) continue for k in range(min(b//a,10000000),1,-1): ok,ng = 0,1000000000 while abs(ok-ng) > 1: mid = abs((ok+ng)//2) if (b+mid)//(a+mid) < k: ng = mid else: ok = mid if (b+ok)%(a+ok) == 0: print(ok) break