結果

問題 No.1580 I like Logarithm!
ユーザー ntudantuda
提出日時 2021-09-07 12:22:04
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 243 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 65,664 KB
最終ジャッジ日時 2024-06-02 09:42:14
合計ジャッジ時間 3,956 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 37 ms
51,584 KB
testcase_04 AC 35 ms
51,712 KB
testcase_05 AC 36 ms
51,712 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 35 ms
52,096 KB
testcase_09 RE -
testcase_10 AC 41 ms
57,472 KB
testcase_11 AC 41 ms
57,984 KB
testcase_12 AC 41 ms
57,856 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 37 ms
51,712 KB
testcase_17 AC 37 ms
51,712 KB
testcase_18 AC 38 ms
51,968 KB
testcase_19 AC 37 ms
51,712 KB
testcase_20 AC 37 ms
51,584 KB
testcase_21 AC 37 ms
51,712 KB
testcase_22 AC 36 ms
51,584 KB
testcase_23 AC 36 ms
51,712 KB
testcase_24 AC 35 ms
51,712 KB
testcase_25 AC 35 ms
51,584 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 AC 41 ms
58,240 KB
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 43 ms
58,240 KB
testcase_36 AC 42 ms
58,112 KB
testcase_37 RE -
testcase_38 AC 42 ms
58,112 KB
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 AC 42 ms
58,240 KB
testcase_43 RE -
testcase_44 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

A = int(input())
B = input()
DB = int(B,A)
m = len(B)
AA = 1
mod = 10 ** 9 + 7
ans = 0
for i in range(1,m):
    AA = (AA * A) % mod
    ans = (ans - AA) % mod
ans = (ans + (m-1) * AA) % mod
ans = (ans + (m -1) * (DB - AA +1)) % mod
print(ans)
0