結果

問題 No.1580 I like Logarithm!
ユーザー ansainansain
提出日時 2021-07-02 22:45:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,288 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 10,928 KB
実行使用メモリ 8,996 KB
最終ジャッジ日時 2023-09-11 23:08:58
合計ジャッジ時間 10,256 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
8,576 KB
testcase_01 AC 18 ms
8,788 KB
testcase_02 AC 19 ms
8,564 KB
testcase_03 AC 19 ms
8,684 KB
testcase_04 AC 18 ms
8,612 KB
testcase_05 AC 19 ms
8,692 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 19 ms
8,672 KB
testcase_09 RE -
testcase_10 AC 51 ms
8,724 KB
testcase_11 AC 194 ms
8,716 KB
testcase_12 AC 213 ms
8,824 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 19 ms
8,608 KB
testcase_17 AC 19 ms
8,672 KB
testcase_18 AC 19 ms
8,664 KB
testcase_19 AC 19 ms
8,560 KB
testcase_20 AC 18 ms
8,616 KB
testcase_21 AC 19 ms
8,660 KB
testcase_22 AC 18 ms
8,748 KB
testcase_23 AC 19 ms
8,576 KB
testcase_24 AC 19 ms
8,564 KB
testcase_25 AC 19 ms
8,632 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 AC 320 ms
8,836 KB
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 302 ms
8,804 KB
testcase_36 AC 295 ms
8,964 KB
testcase_37 RE -
testcase_38 AC 322 ms
8,840 KB
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 AC 335 ms
8,804 KB
testcase_43 RE -
testcase_44 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict, Counter, deque
from itertools import permutations, combinations, product, combinations_with_replacement, groupby, accumulate
import operator
from math import sqrt, gcd, factorial
#from math import isqrt, prod,comb  # python3.8用(notpypy)
#from bisect import bisect_left,bisect_right
#from functools import lru_cache,reduce
#from heapq import heappush,heappop,heapify,heappushpop,heapreplace
#import numpy as np
#import networkx as nx
#from networkx.utils import UnionFind
#from numba import njit, b1, i1, i4, i8, f8
#from scipy.sparse import csr_matrix
#from scipy.sparse.csgraph import shortest_path, floyd_warshall, dijkstra, bellman_ford, johnson, NegativeCycleError
#numba例 @njit(i1(i4[:], i8[:, :]),cache=True) 引数i4配列、i8 2次元配列,戻り値i1
def input(): return sys.stdin.readline().rstrip()
def divceil(n, k): return 1+(n-1)//k  # n/kの切り上げを返す
def yn(hantei, yes='Yes', no='No'): print(yes if hantei else no)


def main():
    mod = 10**9+7
    mod2 = 998244353
    a=int(input())
    b=input()
    ans=0
    for i in range(len(b)-1):
        ans+=(pow(a,i+1,mod)-pow(a,i,mod))*i
    print((ans+((int(b, base=a)%mod)-pow(a,len(b)-1,mod)+1)*(len(b)-1))%mod)


if __name__ == '__main__':
    main()




0