結果

問題 No.1580 I like Logarithm!
ユーザー rlangevinrlangevin
提出日時 2023-01-01 00:23:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 72,448 KB
最終ジャッジ日時 2024-05-05 05:42:18
合計ジャッジ時間 3,910 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 35 ms
51,584 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 35 ms
51,840 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 36 ms
51,712 KB
testcase_06 AC 48 ms
65,152 KB
testcase_07 AC 54 ms
72,064 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 46 ms
60,544 KB
testcase_10 AC 44 ms
61,440 KB
testcase_11 AC 52 ms
67,328 KB
testcase_12 AC 51 ms
68,480 KB
testcase_13 AC 49 ms
66,432 KB
testcase_14 AC 54 ms
71,936 KB
testcase_15 AC 53 ms
69,120 KB
testcase_16 AC 35 ms
51,712 KB
testcase_17 AC 35 ms
51,456 KB
testcase_18 AC 36 ms
51,840 KB
testcase_19 AC 36 ms
51,712 KB
testcase_20 AC 37 ms
51,712 KB
testcase_21 AC 36 ms
51,712 KB
testcase_22 AC 37 ms
51,712 KB
testcase_23 AC 35 ms
51,968 KB
testcase_24 AC 34 ms
51,840 KB
testcase_25 AC 35 ms
51,584 KB
testcase_26 AC 57 ms
72,320 KB
testcase_27 AC 57 ms
72,064 KB
testcase_28 AC 58 ms
72,192 KB
testcase_29 AC 55 ms
72,192 KB
testcase_30 AC 56 ms
72,192 KB
testcase_31 AC 56 ms
72,192 KB
testcase_32 AC 56 ms
72,448 KB
testcase_33 AC 56 ms
72,192 KB
testcase_34 AC 57 ms
72,320 KB
testcase_35 AC 55 ms
72,320 KB
testcase_36 AC 56 ms
72,192 KB
testcase_37 AC 63 ms
72,320 KB
testcase_38 AC 65 ms
72,320 KB
testcase_39 AC 61 ms
72,320 KB
testcase_40 AC 58 ms
72,064 KB
testcase_41 AC 57 ms
72,192 KB
testcase_42 AC 58 ms
72,064 KB
testcase_43 AC 58 ms
72,192 KB
testcase_44 AC 59 ms
72,192 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