結果
問題 | No.16 累乗の加算 |
ユーザー | NaruY |
提出日時 | 2018-05-09 09:54:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,057 bytes |
コンパイル時間 | 1,512 ms |
コンパイル使用メモリ | 165,460 KB |
実行使用メモリ | 784,828 KB |
最終ジャッジ日時 | 2024-06-28 02:38:44 |
合計ジャッジ時間 | 12,465 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | MLE | - |
testcase_03 | AC | 369 ms
302,284 KB |
testcase_04 | AC | 467 ms
382,956 KB |
testcase_05 | AC | 532 ms
444,084 KB |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
ソースコード
#include <bits/stdc++.h> #define FOR(i,a,b) for(int i=(a);i<(b);++i) #define REP(i,n) for(int i=0;i<(n);i++) #define FORq(i, m, n) for(int i = (m);i <= (n);++i) #define SCD(n) scanf("%d",&n) #define SCD2(m,n) scanf("%d%d",&m,&n) #define SCD3(m,n,k) scanf("%d%d%d",&m,&n,&k) #define PB push_back #define MP make_pair #define ARSCD(A,N) REP(i,N){SCD(A[i]);} #define ARSCD1(A,N) FORq(i,1,N){SCD(A[i]);} #define PRINTD(n) printf("%d\n",n) #define PRINTLLD(n) printf("%lld\n",n) #define DEBUG printf("%s\n","debug") #define fst first #define snd second using namespace std; typedef pair<int,int> PII; typedef vector<int> VI; typedef long long ll; ////////////////////////////////////////////////////// int main(){ const ll p = 1000003; ll x,N; scanf("%lld%lld",&x,&N); ll a[101]; ll maxd = 0; static ll xdeg[100000002]; REP(i,N){ ll z; scanf("%lld",&z); maxd = max(maxd,z); a[i] = z; } xdeg[0] = 1; FORq(i,1,maxd){ xdeg[i] = (x * xdeg[i-1]) % p; } ll ans = 0; REP(i,N){ ans = (ans + xdeg[a[i]]) % p; } PRINTLLD(ans); return 0; }