結果

問題 No.1580 I like Logarithm!
ユーザー kohei2019kohei2019
提出日時 2022-06-27 23:37:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 659 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 77,368 KB
最終ジャッジ日時 2024-04-30 12:38:52
合計ジャッジ時間 18,209 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,340 KB
testcase_01 AC 40 ms
52,412 KB
testcase_02 AC 38 ms
52,400 KB
testcase_03 AC 41 ms
52,404 KB
testcase_04 AC 41 ms
53,448 KB
testcase_05 AC 41 ms
52,964 KB
testcase_06 AC 295 ms
76,308 KB
testcase_07 AC 624 ms
76,840 KB
testcase_08 AC 56 ms
70,660 KB
testcase_09 AC 103 ms
75,896 KB
testcase_10 AC 132 ms
75,900 KB
testcase_11 AC 403 ms
76,988 KB
testcase_12 AC 440 ms
76,628 KB
testcase_13 AC 367 ms
76,272 KB
testcase_14 AC 609 ms
77,212 KB
testcase_15 AC 487 ms
76,956 KB
testcase_16 AC 38 ms
52,772 KB
testcase_17 AC 38 ms
52,408 KB
testcase_18 AC 41 ms
53,408 KB
testcase_19 AC 38 ms
52,624 KB
testcase_20 AC 39 ms
52,196 KB
testcase_21 AC 39 ms
52,076 KB
testcase_22 AC 40 ms
52,980 KB
testcase_23 AC 41 ms
53,040 KB
testcase_24 AC 40 ms
52,248 KB
testcase_25 AC 40 ms
52,332 KB
testcase_26 AC 653 ms
77,316 KB
testcase_27 AC 638 ms
77,252 KB
testcase_28 AC 644 ms
76,940 KB
testcase_29 AC 640 ms
77,032 KB
testcase_30 AC 638 ms
77,144 KB
testcase_31 AC 642 ms
77,160 KB
testcase_32 AC 636 ms
77,004 KB
testcase_33 AC 641 ms
76,884 KB
testcase_34 AC 643 ms
77,220 KB
testcase_35 AC 628 ms
77,208 KB
testcase_36 AC 633 ms
77,340 KB
testcase_37 AC 631 ms
77,160 KB
testcase_38 AC 635 ms
77,368 KB
testcase_39 AC 632 ms
77,208 KB
testcase_40 AC 643 ms
77,028 KB
testcase_41 AC 646 ms
76,912 KB
testcase_42 AC 646 ms
77,116 KB
testcase_43 AC 659 ms
76,904 KB
testcase_44 AC 655 ms
76,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def modPow(a,n,mod):#繰り返し二乗法 a**n % mod
    if n==0:
        return 1
    if n==1:
        return a%mod
    if n & 1:
        return (a*modPow(a,n-1,mod)) % mod
    t = modPow(a,n>>1,mod)
    return (t*t)%mod

A = int(input())
B = input()
if len(B) == 1:
    print(0)
    exit()
mod = 10**9+7
lB = len(B)
ans = 0
for i in range(1,lB):
    ans += (i-1)*(modPow(A,i,mod)-modPow(A,i-1,mod))
    ans %= mod
ans += (modPow(A,lB-1,mod))*(int(B[0])-1)*(lB-1)
ans %= mod
ad = 1
cc = 1
for i in range(1,lB):
    ad += cc*int(B[-i])
    cc *= A
    cc %= mod
    ad %= mod
ad *= lB-1
print((ans+ad)%mod)
0