結果

問題 No.16 累乗の加算
ユーザー こるこる
提出日時 2017-01-07 16:12:36
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
MLE  
実行時間 -
コード長 387 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 1,598,624 KB
最終ジャッジ日時 2024-12-17 16:15:51
合計ジャッジ時間 74,240 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 TLE -
testcase_11 MLE -
testcase_12 TLE -
testcase_13 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

x,n=[int(i) for i in input().split()]
a=[int(i) for i in input().split()]
sum=0
dp=[-1]*100000001

def p(x,n):
    if dp[n]!=-1: return dp[n]
    if n<2:
        dp[n]=(x**n)
        return dp[n]
    if n%2!=0:
        dp[n]=(p(x,n-1)*x)
        return dp[n]
    if n%2==0:
        dp[n]=(p(x,int(n/2))**2)
        return dp[n]

for i in range(n):
    sum+=p(x,a[i])
print(sum%100000003)
0