結果
問題 | No.897 compαctree |
ユーザー | masumasumath1 |
提出日時 | 2020-01-03 10:37:14 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 532 bytes |
コンパイル時間 | 87 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-05-02 07:07:31 |
合計ジャッジ時間 | 1,229 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
10,624 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 30 ms
10,752 KB |
testcase_12 | AC | 30 ms
10,752 KB |
testcase_13 | AC | 30 ms
10,752 KB |
ソースコード
def func(K,n): return (K**n-1)/(K-1) def func_bisect(K,N): left = 1 right = N eps = 0.1 while left < right: mid = (left+right)/2 #print(func(K,mid),left,mid,right) if abs(N -func(K,mid)) < eps: return mid elif N -func(K,mid) > eps: left = mid elif func(K,mid) - N > eps: right = mid Q = int(input()) for i in range(Q): N,K = map(int,input().split()) if K == 1: print(N-1) else: print(int(func_bisect(K,N)))