結果

問題 No.1580 I like Logarithm!
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2021-12-03 06:49:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 197 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-05 10:40:21
合計ジャッジ時間 5,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 24 ms
10,624 KB
testcase_03 AC 24 ms
10,624 KB
testcase_04 AC 24 ms
10,624 KB
testcase_05 AC 23 ms
10,496 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 25 ms
10,752 KB
testcase_09 RE -
testcase_10 AC 65 ms
10,880 KB
testcase_11 AC 243 ms
10,880 KB
testcase_12 AC 265 ms
10,752 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 25 ms
10,496 KB
testcase_17 AC 25 ms
10,624 KB
testcase_18 AC 25 ms
10,496 KB
testcase_19 AC 24 ms
10,496 KB
testcase_20 AC 24 ms
10,496 KB
testcase_21 AC 24 ms
10,752 KB
testcase_22 AC 24 ms
10,624 KB
testcase_23 AC 24 ms
10,752 KB
testcase_24 AC 24 ms
10,880 KB
testcase_25 AC 24 ms
10,752 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 AC 398 ms
11,008 KB
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 378 ms
10,880 KB
testcase_36 AC 429 ms
11,008 KB
testcase_37 RE -
testcase_38 AC 405 ms
11,008 KB
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 AC 413 ms
10,880 KB
testcase_43 RE -
testcase_44 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

A = int(input())
B = input()
mod = 10**9 + 7
N = len(B)
b = int(B,A)
ans = (b - pow(A,N-1)+1)*(N-1)%mod
for j in range(1,N-1):
    ans += j*(pow(A,j+1,mod) - pow(A,j,mod))
    ans %= mod
print(ans)
0