結果

問題 No.1580 I like Logarithm!
ユーザー ntudantuda
提出日時 2021-09-06 22:03:35
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 393 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 67,964 KB
最終ジャッジ日時 2024-06-02 03:29:08
合計ジャッジ時間 3,353 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,992 KB
testcase_01 AC 33 ms
52,864 KB
testcase_02 AC 34 ms
52,864 KB
testcase_03 AC 33 ms
52,736 KB
testcase_04 AC 35 ms
54,400 KB
testcase_05 AC 34 ms
54,272 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 32 ms
52,224 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 35 ms
54,272 KB
testcase_17 AC 33 ms
53,248 KB
testcase_18 AC 34 ms
52,992 KB
testcase_19 AC 35 ms
54,400 KB
testcase_20 AC 34 ms
52,736 KB
testcase_21 AC 34 ms
53,504 KB
testcase_22 AC 33 ms
52,864 KB
testcase_23 AC 31 ms
52,352 KB
testcase_24 AC 33 ms
53,248 KB
testcase_25 AC 33 ms
54,144 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

A = int(input())
B = int(input())
B= int(str(B),A)
x = 1
j = A
ans = 0
mod = 10 ** 9 + 7

def check(x):
    return pow(A,x) <= B

lb = 0
ub = 10 ** 5 + 10

while ub - lb > 1:
    mid = (ub + lb) // 2
    if check(mid):
        lb = mid
    else:
        ub = mid

for i in range(lb+1):
    ans = (ans + (A-1) * x * i) % mod
    x = (x * A) % mod
ans = (ans + (B - x + 1) * i) % mod

print(ans)
0