結果

問題 No.16 累乗の加算
ユーザー koyoprokoyopro
提出日時 2015-09-20 14:42:57
言語 Python2
(2.7.18)
結果
AC  
実行時間 12 ms / 5,000 ms
コード長 528 bytes
コンパイル時間 927 ms
コンパイル使用メモリ 6,604 KB
実行使用メモリ 6,044 KB
最終ジャッジ日時 2023-09-08 11:46:21
合計ジャッジ時間 990 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
5,864 KB
testcase_01 AC 11 ms
5,908 KB
testcase_02 AC 12 ms
6,000 KB
testcase_03 AC 11 ms
5,992 KB
testcase_04 AC 11 ms
6,028 KB
testcase_05 AC 11 ms
5,956 KB
testcase_06 AC 11 ms
6,044 KB
testcase_07 AC 12 ms
6,028 KB
testcase_08 AC 11 ms
6,000 KB
testcase_09 AC 12 ms
5,964 KB
testcase_10 AC 12 ms
5,868 KB
testcase_11 AC 11 ms
5,872 KB
testcase_12 AC 11 ms
5,828 KB
testcase_13 AC 12 ms
5,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

# x N
# a1 a2 … aN

x, N = map(int, raw_input().split())

mod = 1000003
mods = {}

powx2 = [x]
k = 0
border = 1
while 100000000 >= border:
    powx2.append(powx2[k] ** 2 % mod)
    k += 1
    border *= 2

a = map(int, raw_input().split())

def powx(a):
    totalmod = 1
    for i in xrange(len(powx2)-1, -1, -1):
        b = 2 ** i
        if a >= b:
            totalmod *= powx2[i]
            a -= b
    return totalmod

total = 0
for i in xrange(N):
    total += powx(a[i])

print total % 1000003
0