結果
問題 |
No.16 累乗の加算
|
ユーザー |
|
提出日時 | 2015-10-01 22:43:13 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 601 bytes |
コンパイル時間 | 470 ms |
コンパイル使用メモリ | 56,976 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-26 05:02:09 |
合計ジャッジ時間 | 1,106 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 14 |
ソースコード
#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); ans %= 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; }