結果

問題 No.1580 I like Logarithm!
ユーザー tamatotamato
提出日時 2021-07-02 21:48:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 82,624 KB
実行使用メモリ 71,040 KB
最終ジャッジ日時 2024-06-29 11:19:54
合計ジャッジ時間 4,585 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,352 KB
testcase_01 AC 32 ms
52,096 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 36 ms
52,224 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 33 ms
51,840 KB
testcase_06 AC 68 ms
64,512 KB
testcase_07 AC 112 ms
70,656 KB
testcase_08 AC 33 ms
52,096 KB
testcase_09 AC 42 ms
60,032 KB
testcase_10 AC 46 ms
61,008 KB
testcase_11 AC 85 ms
66,176 KB
testcase_12 AC 87 ms
67,072 KB
testcase_13 AC 75 ms
65,408 KB
testcase_14 AC 108 ms
70,784 KB
testcase_15 AC 93 ms
67,968 KB
testcase_16 AC 33 ms
52,096 KB
testcase_17 AC 32 ms
52,224 KB
testcase_18 AC 32 ms
52,352 KB
testcase_19 AC 31 ms
52,608 KB
testcase_20 AC 34 ms
51,840 KB
testcase_21 AC 33 ms
51,840 KB
testcase_22 AC 32 ms
52,096 KB
testcase_23 AC 31 ms
52,480 KB
testcase_24 AC 33 ms
52,096 KB
testcase_25 AC 32 ms
51,968 KB
testcase_26 AC 112 ms
70,572 KB
testcase_27 AC 115 ms
70,272 KB
testcase_28 AC 113 ms
70,684 KB
testcase_29 AC 114 ms
70,912 KB
testcase_30 AC 112 ms
70,272 KB
testcase_31 AC 115 ms
70,784 KB
testcase_32 AC 114 ms
70,528 KB
testcase_33 AC 114 ms
70,400 KB
testcase_34 AC 112 ms
70,528 KB
testcase_35 AC 118 ms
70,784 KB
testcase_36 AC 114 ms
70,272 KB
testcase_37 AC 118 ms
70,784 KB
testcase_38 AC 117 ms
70,272 KB
testcase_39 AC 115 ms
70,528 KB
testcase_40 AC 113 ms
70,272 KB
testcase_41 AC 113 ms
70,400 KB
testcase_42 AC 114 ms
71,040 KB
testcase_43 AC 115 ms
70,528 KB
testcase_44 AC 118 ms
70,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    a = int(input())
    B = input().rstrip('\n')
    B = list(map(int, B))

    bb = 0
    for i in range(len(B)):
        bb = (bb + B[-i-1] * (pow(a, i, mod))%mod)%mod
    ans = 0
    for i in range(len(B)):
        if i == len(B) - 1:
            ans = (ans + i * (bb - pow(a, i, mod) + 1))%mod
        else:
            ans = (ans + i * (a-1) * pow(a, i, mod))%mod
    print(ans)


if __name__ == '__main__':
    main()
0