結果
問題 | No.16 累乗の加算 |
ユーザー | DialBird |
提出日時 | 2016-12-17 16:16:57 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 5 ms / 5,000 ms |
コード長 | 820 bytes |
コンパイル時間 | 733 ms |
コンパイル使用メモリ | 60,124 KB |
実行使用メモリ | 7,296 KB |
最終ジャッジ日時 | 2024-06-26 05:19:08 |
合計ジャッジ時間 | 1,226 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
7,040 KB |
testcase_01 | AC | 5 ms
7,040 KB |
testcase_02 | AC | 5 ms
7,040 KB |
testcase_03 | AC | 5 ms
7,168 KB |
testcase_04 | AC | 4 ms
7,168 KB |
testcase_05 | AC | 4 ms
7,168 KB |
testcase_06 | AC | 5 ms
7,168 KB |
testcase_07 | AC | 5 ms
7,040 KB |
testcase_08 | AC | 5 ms
7,168 KB |
testcase_09 | AC | 4 ms
7,168 KB |
testcase_10 | AC | 4 ms
7,040 KB |
testcase_11 | AC | 5 ms
7,296 KB |
testcase_12 | AC | 4 ms
7,040 KB |
testcase_13 | AC | 5 ms
7,168 KB |
ソースコード
#include <iostream> #include <vector> #include <array> using namespace std; #define REP(i,first,last) for (int i=first;i<last;i++) #define FOR(it,con) for (auto it=con.begin();it!=con.end();it++) const int devider = 1000002; int x,N; vector<int> amari_list(devider, -1); int pow(long long x, int a){ int res = 1; if (a > 0) { res = pow(x*x % (devider+1), a/2); if (a & 1) res = res*x % (devider+1); } return res % (devider+1); } int main(){ cin >> x; cin >> N; x %= (devider+1); int val; long long result = 0; REP(i,0,N) { cin >> val; int target = val % devider; if (amari_list[target] == -1) { int amari = pow(x, target); amari_list[target] = amari; } result += amari_list[target]; result %= (devider+1); } cout<<result % (devider + 1)<<endl; }