結果
問題 | No.16 累乗の加算 |
ユーザー | ibukiti |
提出日時 | 2021-10-19 12:32:06 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 432 bytes |
コンパイル時間 | 661 ms |
コンパイル使用メモリ | 81,756 KB |
実行使用メモリ | 831,900 KB |
最終ジャッジ日時 | 2024-09-20 06:19:23 |
合計ジャッジ時間 | 2,331 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
53,648 KB |
testcase_01 | AC | 38 ms
53,028 KB |
testcase_02 | MLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
ソースコード
x,n=map(int,input().split()) a=list(map(int,input().split())) def pow_k(x, n): """ O(log n) """ if n == 0: return 1 K = 1 while n > 1: if n % 2 != 0: K = K * x x = x ** 2 n = (n - 1) // 2 else: x = x ** 2 n = n // 2 return (K * x)%mod dp=[0]*(max(a)+1) ans=0 mod=1000003 for i in a: ans+=pow_k(x,i) print(ans%mod)