結果
問題 | No.16 累乗の加算 |
ユーザー | RCCW |
提出日時 | 2017-02-11 23:59:40 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 437 bytes |
コンパイル時間 | 1,051 ms |
コンパイル使用メモリ | 158,456 KB |
実行使用メモリ | 9,884 KB |
最終ジャッジ日時 | 2024-06-09 09:58:56 |
合計ジャッジ時間 | 7,508 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(0);cin.tie(0);//cinとcoutを切り離し高速化 long long x,N; cin>>x>>N; long long sum=1; long long sumf=0; long long NN[N]; for (int i = 0; i < N; ++i) { cin>>NN[i]; for (int var = 0; var < NN[i]; ++var) { sum=sum*x; if(sum>1000003){ sum=sum%1000003; } } sumf=sumf+sum; sum=1; } printf("%lld",sumf); }