結果
問題 |
No.16 累乗の加算
|
ユーザー |
|
提出日時 | 2015-10-01 22:39:46 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 586 bytes |
コンパイル時間 | 491 ms |
コンパイル使用メモリ | 56,084 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-19 18:56:10 |
合計ジャッジ時間 | 933 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 WA * 10 |
ソースコード
#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; }