結果
問題 | No.16 累乗の加算 |
ユーザー | tookunn_1213 |
提出日時 | 2015-08-20 09:50:17 |
言語 | Python2 (2.7.18) |
結果 |
MLE
|
実行時間 | - |
コード長 | 172 bytes |
コンパイル時間 | 62 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 818,688 KB |
最終ジャッジ日時 | 2024-07-18 10:49:08 |
合計ジャッジ時間 | 2,789 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
6,272 KB |
testcase_01 | AC | 10 ms
6,272 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,raw_input().split()) a = map(int,raw_input().split()) ans = 0 for i in range(N): xx = 1 for j in range(a[i]): xx *= x ans += xx ans %= 1000003 print ans