結果
問題 | No.16 累乗の加算 |
ユーザー | zn_kie |
提出日時 | 2019-07-11 23:13:14 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 880 bytes |
コンパイル時間 | 708 ms |
コンパイル使用メモリ | 59,092 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 19:16:17 |
合計ジャッジ時間 | 1,459 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 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 | AC | 2 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
5,248 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; typedef long long ll; #define rep(i,n) for (int i = 0; i < (n); ++i) ll mypow(ll x, ll a){ // 繰り返し2乗和 // 例) x^22を計算する場合 // 22(10進数)=10110(2進数) // = 16 + 4 + 2 // x^22 = x^16 * x^4 * x^2 // x^2がわかればそれの2乗がx^4,その2乗がx^8,その2乗がx^16 int ret = 1; while(a){ if(a&1){ // 最下位bitに1が立ってたらxをかける ret=ret*x%1000003; } a=a>>1; // bitの右シフト x=x*x%1000003; } return ret; } int main(){ ll x,N; cin >> x >> N; ll a; int ans = 0; // ループ内で1要素ずつ処理する rep(i,N){ cin >> a; ans += mypow(x,a); } cout << ans << endl; return 0; }