結果

問題 No.16 累乗の加算
ユーザー nebukuro09nebukuro09
提出日時 2016-09-21 13:49:03
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 369 bytes
コンパイル時間 1,739 ms
コンパイル使用メモリ 76,544 KB
実行使用メモリ 335,032 KB
最終ジャッジ日時 2024-11-17 10:22:41
合計ジャッジ時間 69,063 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
333,856 KB
testcase_01 AC 82 ms
335,032 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 84 ms
334,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 1000003
mem = {}
X, N = map(int, raw_input().split())
a = map(int, raw_input().split())

def power(x, n):
    if n in mem:
        return mem[(x, n)]
    if n == 0:
        return 1
    if n%2 == 0:
        mem[(x, n)] = power(x*x, n/2) % MOD
    else:
        mem[(x, n)] = x * power(x, n-1) % MOD
    return mem[(x, n)]

print sum(map(lambda n:power(X, n), a))
0