結果
問題 | No.1580 I like Logarithm! |
ユーザー | hir355 |
提出日時 | 2021-07-02 21:45:32 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 87 ms / 2,000 ms |
コード長 | 257 bytes |
コンパイル時間 | 137 ms |
コンパイル使用メモリ | 82,372 KB |
実行使用メモリ | 69,248 KB |
最終ジャッジ日時 | 2024-06-29 11:16:55 |
合計ジャッジ時間 | 3,921 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 6 |
other | AC * 39 |
ソースコード
MOD = 10 ** 9 + 7 a = int(input()) b = input() x = 0 for c in b: x *= a x += ord(c) - ord('0') x %= MOD ans = (x - (pow(a, len(b) - 1, MOD) - 1)) * (len(b) - 1) for i in range(len(b) - 1): ans += i * pow(a, i, MOD) * (a - 1) print(ans % MOD)