結果

問題 No.16 累乗の加算
ユーザー tetsuzuki1115tetsuzuki1115
提出日時 2018-01-05 17:03:25
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 691 bytes
コンパイル時間 657 ms
コンパイル使用メモリ 78,000 KB
実行使用メモリ 784,896 KB
最終ジャッジ日時 2024-06-02 09:49:22
合計ジャッジ時間 31,019 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:32:14: warning: iteration 99999999 invokes undefined behavior [-Waggressive-loop-optimizations]
   32 |         M[i] = a;
      |         ~~~~~^~~
main.cpp:29:24: note: within this loop
   29 |     for ( int i = 1; i <= 100000000; i++ ) {
      |                      ~~^~~~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <cstring>
#include <math.h>
#include <cmath>
#include <limits.h>
#include <map>
#include <set>
#include <queue>
#include <algorithm>
#include <functional>
#include <stdio.h>
using namespace std;

long long MOD = 1000003;


long long M[100000000];

int main() {
    
    int x,N;
    cin >> x >> N;
    
    
    M[0] = 1;
    long long a = 1;
    for ( int i = 1; i <= 100000000; i++ ) {
        a *= x;
        a %= MOD;
        M[i] = a;
    }
    
    long long ans =  0;
    for ( int i = 0; i < N; i++ ) {
        cin >> a;
        ans += M[a];
        ans %= MOD;
    }
    
    cout << ans << endl;
    
    return 0;
}
0