結果

問題 No.16 累乗の加算
ユーザー shota525shota525
提出日時 2018-05-07 02:38:44
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 493 bytes
コンパイル時間 1,321 ms
コンパイル使用メモリ 157,396 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-28 02:15:29
合計ジャッジ時間 1,946 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 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 WA -
testcase_12 WA -
testcase_13 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define DIV 1000003 

using namespace std;

int X, N;
double kou[101] = {0};

double rec(int count = 0, double sum = 0){
    
    if(count == N) return sum;
    
    double res = 0;
    
    res = rec(count + 1, sum + fmod(pow(X, kou[count]), DIV));
    res = fmod(res, DIV);
    
    return res;
}

int main(void){
    
    cin >> X >> N;
    
    int i;
    for(i = 0; i < N; ++i){
        cin >> kou[i];
    }
    
    printf("%0.f\n", rec());
    
    return 0;
}
0