結果
問題 | No.16 累乗の加算 |
ユーザー | mannshi222jp |
提出日時 | 2022-02-12 17:57:51 |
言語 | C (gcc 12.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 572 bytes |
コンパイル時間 | 156 ms |
コンパイル使用メモリ | 29,568 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-28 20:06:39 |
合計ジャッジ時間 | 2,109 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
ソースコード
#include <stdio.h> #define Z 1000003 int x, N; long long int a; int getxn( int *xn, int n ); int main() { int xn[100]; long long int sum = 0; scanf("%d %d\n", &x, &N ); xn[0] = 1; for( int i = 0; i < N - 1 ; i++ ) { scanf("%d ", &a ); sum += getxn( xn, a ); sum = sum % Z; } scanf("%d\n", &a ); sum += getxn( xn, a ); sum = sum % Z; printf("%d\n", sum); return 0; } int getxn( int *xn, int n ) { static int r = 0; if( n <= r ) { return xn[n]; } for( int i = r+1; i <= n; i++ ) { xn[i] = ( xn[i-1] * x ) % Z; } r = n; return xn[n]; }