結果

問題 No.1580 I like Logarithm!
ユーザー rlangevinrlangevin
提出日時 2023-01-01 00:23:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 72,320 KB
最終ジャッジ日時 2024-11-26 23:55:26
合計ジャッジ時間 4,133 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 37 ms
51,456 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 38 ms
51,584 KB
testcase_06 AC 51 ms
65,152 KB
testcase_07 AC 57 ms
71,552 KB
testcase_08 AC 42 ms
51,584 KB
testcase_09 AC 46 ms
60,288 KB
testcase_10 AC 47 ms
61,440 KB
testcase_11 AC 52 ms
67,456 KB
testcase_12 AC 53 ms
67,840 KB
testcase_13 AC 51 ms
66,432 KB
testcase_14 AC 57 ms
71,936 KB
testcase_15 AC 54 ms
68,992 KB
testcase_16 AC 38 ms
51,584 KB
testcase_17 AC 38 ms
51,584 KB
testcase_18 AC 38 ms
51,328 KB
testcase_19 AC 38 ms
51,584 KB
testcase_20 AC 38 ms
52,096 KB
testcase_21 AC 37 ms
51,456 KB
testcase_22 AC 37 ms
51,712 KB
testcase_23 AC 37 ms
51,968 KB
testcase_24 AC 38 ms
51,712 KB
testcase_25 AC 38 ms
51,712 KB
testcase_26 AC 57 ms
72,320 KB
testcase_27 AC 57 ms
72,192 KB
testcase_28 AC 57 ms
71,680 KB
testcase_29 AC 57 ms
72,320 KB
testcase_30 AC 57 ms
72,320 KB
testcase_31 AC 57 ms
72,192 KB
testcase_32 AC 57 ms
71,808 KB
testcase_33 AC 57 ms
71,808 KB
testcase_34 AC 57 ms
72,192 KB
testcase_35 AC 56 ms
72,192 KB
testcase_36 AC 57 ms
72,320 KB
testcase_37 AC 58 ms
72,192 KB
testcase_38 AC 57 ms
72,192 KB
testcase_39 AC 57 ms
71,936 KB
testcase_40 AC 57 ms
72,064 KB
testcase_41 AC 57 ms
72,320 KB
testcase_42 AC 57 ms
71,936 KB
testcase_43 AC 58 ms
71,936 KB
testcase_44 AC 58 ms
71,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A = int(input())
B = list(input())
B = list(map(int, B))
mod = 10 ** 9 + 7

ans = 0
v = 1
for i in range(len(B)-1):
    ans += i * v * (A - 1)
    v *= A
    ans %= mod
    v %= mod

B[0] -= 1
va = 1
val = 1
for i in range(len(B) - 1, -1, -1):
    val += B[i] * va
    va *= A
    val %= mod
    va %= mod
ans += val * (len(B) - 1)
ans %= mod
print(ans)
0