結果
問題 | No.16 累乗の加算 |
ユーザー | DialBird |
提出日時 | 2016-11-19 06:41:03 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 566 bytes |
コンパイル時間 | 458 ms |
コンパイル使用メモリ | 55,256 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-04 20:46:45 |
合計ジャッジ時間 | 1,015 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 1 ms
5,376 KB |
ソースコード
#include <iostream> using namespace std; #define REP(i,fast,last) for(int i=fast;i<last;i++) const int devider = 1000003; int x, n; int pow(int x, long long a){ int res = 1; if (a > 0) { long long l = 1; res = pow(l*x*x % devider, a/2); if (a%2 == 1) res = res*x % devider; } return res % devider; } int main(){ cin >> x >> n; x %= devider; long long sum = 0; int val; REP(i,0,n){ cin >> val; //1000003は素数なのでフェルマーの小定理を利用する sum += pow(x, val); } cout<<sum % devider<<endl; }