結果

問題 No.16 累乗の加算
ユーザー ytftytft
提出日時 2022-11-03 05:31:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 5,000 ms
コード長 344 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 58,496 KB
最終ジャッジ日時 2024-07-17 16:23:14
合計ジャッジ時間 1,749 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,968 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 45 ms
58,496 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 42 ms
52,480 KB
testcase_06 AC 43 ms
57,728 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 42 ms
57,856 KB
testcase_09 AC 43 ms
57,984 KB
testcase_10 AC 44 ms
58,112 KB
testcase_11 AC 40 ms
52,608 KB
testcase_12 AC 40 ms
51,840 KB
testcase_13 AC 40 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
def p(a,p,mod):
    rem=p%(mod-1)
    temp=a
    ans=1
    while rem:
        if rem%2:
            ans=(ans*temp)%mod
        temp=(temp**2)%mod
        rem//=2
    return ans
mod=1000003
x,N=map(int,input().split())
a=list(map(int,input().split()))
print(sum([p(x,i,mod) for i in a])%mod)
0