結果

問題 No.1580 I like Logarithm!
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-07-02 22:48:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 770 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 88,712 KB
最終ジャッジ日時 2024-06-29 12:40:56
合計ジャッジ時間 6,019 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 40 ms
52,224 KB
testcase_06 AC 93 ms
72,576 KB
testcase_07 AC 152 ms
87,552 KB
testcase_08 AC 38 ms
52,352 KB
testcase_09 AC 53 ms
62,720 KB
testcase_10 AC 61 ms
64,128 KB
testcase_11 AC 114 ms
77,696 KB
testcase_12 AC 121 ms
79,360 KB
testcase_13 AC 106 ms
75,904 KB
testcase_14 AC 153 ms
87,296 KB
testcase_15 AC 129 ms
82,228 KB
testcase_16 AC 39 ms
51,968 KB
testcase_17 AC 40 ms
51,712 KB
testcase_18 AC 39 ms
51,840 KB
testcase_19 AC 39 ms
51,968 KB
testcase_20 AC 39 ms
51,712 KB
testcase_21 AC 39 ms
51,840 KB
testcase_22 AC 41 ms
51,840 KB
testcase_23 AC 40 ms
52,480 KB
testcase_24 AC 40 ms
51,712 KB
testcase_25 AC 40 ms
51,712 KB
testcase_26 AC 159 ms
88,192 KB
testcase_27 AC 161 ms
88,596 KB
testcase_28 AC 159 ms
88,064 KB
testcase_29 AC 146 ms
88,612 KB
testcase_30 AC 160 ms
88,064 KB
testcase_31 AC 149 ms
88,268 KB
testcase_32 AC 149 ms
88,320 KB
testcase_33 AC 150 ms
88,532 KB
testcase_34 AC 147 ms
88,064 KB
testcase_35 AC 149 ms
88,172 KB
testcase_36 AC 149 ms
88,320 KB
testcase_37 AC 149 ms
88,328 KB
testcase_38 AC 146 ms
88,576 KB
testcase_39 AC 147 ms
88,712 KB
testcase_40 AC 149 ms
88,576 KB
testcase_41 AC 145 ms
88,400 KB
testcase_42 AC 155 ms
88,448 KB
testcase_43 AC 149 ms
88,668 KB
testcase_44 AC 149 ms
88,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline
    a = int(input())
    b = list(map(int, list(input())[:-1]))
    ans = 0
    mod = 10 ** 9 + 7
    for i in range(1, len(b)):
        if i != len(b) - 1:
            ans += i * pow(a, i, mod) * (a - 1)
            ans %= mod
        else:
            ans += i * (b[-(i + 1)] - 1) * pow(a, i, mod)
            ans %= mod
    ########関数部分##############
    def Base_n_to_10(X,n):
        out = 0
        for i in range(1,len(str(X))+1):
            out += int(X[-i])*pow(n,(i-1),mod)
            out %= mod
        return out#int out
    ############################
    print((ans + (len(b) - 1) * (Base_n_to_10("".join(list(map(str, b[1:]))), a) + 1)) % mod)
if __name__ == '__main__':
    main()
    
0