結果
問題 | No.16 累乗の加算 |
ユーザー | MaxMellon |
提出日時 | 2015-10-01 22:39:46 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 586 bytes |
コンパイル時間 | 491 ms |
コンパイル使用メモリ | 56,084 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-19 18:56:10 |
合計ジャッジ時間 | 933 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
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 | AC | 2 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> using namespace std; #define SIZE 100 #define MOD 1000003 int calcPowMod(int x, int n, int mod); int main (void) { int i, x, N = 0; int a[SIZE]; unsigned long ans = 0; cin >> x >> N; for ( i = 0; i < N; i++ ) { cin >> a[i]; } for ( i = 0; i < N; i++ ) { ans += calcPowMod(x, a[i], MOD); } cout << ans << endl; } int calcPowMod(int x, int n, int mod) { unsigned long sum; if ( n == 0 ) { return 1; } if ( n == 1 ) { return x % mod; } sum = calcPowMod(x, n/2, mod); return n%2 == 0 ? (sum * sum) % mod : (x * sum * sum) % mod; }