結果

問題 No.181 A↑↑N mod M
ユーザー koba-e964koba-e964
提出日時 2017-03-06 21:37:25
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,503 bytes
コンパイル時間 672 ms
コンパイル使用メモリ 87,228 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-23 11:29:49
合計ジャッジ時間 1,798 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 1 ms
6,948 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 2 ms
6,948 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 1 ms
6,944 KB
testcase_37 AC 1 ms
6,940 KB
testcase_38 AC 1 ms
6,944 KB
testcase_39 AC 1 ms
6,940 KB
testcase_40 AC 2 ms
6,940 KB
testcase_41 AC 2 ms
6,944 KB
testcase_42 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘ll _Z4calcxxiRb.part.0(ll, ll, int, bool&)’:
main.cpp:55:3: warning: ‘subsmall’ may be used uninitialized [-Wmaybe-uninitialized]
   55 |   if (subsmall) {
      |   ^~
main.cpp:53:8: note: ‘subsmall’ declared here
   53 |   bool subsmall;
      |        ^~~~~~~~

ソースコード

diff #

#include <algorithm>
#include <bitset>
#include <cassert>
#include <cctype>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <deque>
#include <functional>
#include <iomanip>
#include <iostream>
#include <list>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <utility>
#include <vector>

#define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++)

using namespace std;
typedef long long int ll;
typedef vector<int> VI;
typedef pair<int, int> PI;
const double EPS=1e-9;
const int DEBUG = 0;

int totient(int m) {
  int s = 0;
  REP(i, 1, m + 1) {
    if (__gcd(i, m) == 1) {
      ++s;
    }
  }
  return s;
}

ll calc(ll a, ll n, int m, bool &small) {
  if (m == 1) {
    return 0;
  }
  if (n == 0) {
    small = true;
    return 1;
  }
  int t = totient(m);
  bool subsmall;
  ll r = calc(a, n - 1, t, subsmall);
  if (subsmall) {
    small = true;
    ll sum = 1;
    REP(i, 0, r) {
      sum *= a;
      if (sum >= m) { small = false; }
      sum %= m;
    }
    return sum;
  }
  small = false;
  ll sum = 1;
  ll cur = a;
  r += t;
  while (r > 0) {
    if (r % 2 != 0) {
      sum *= cur;
      sum %= m;
    }
    cur *= cur;
    cur %= m;
    r /= 2;
  }
  if (DEBUG) {
    cout << "calc(" << a << ", " << n << ", " << m << ") = " << sum << endl;
  }
  return sum;
}

int main(void){
  int a, n, m;
  cin >> a >> n >> m;
  bool t;
  cout << calc(a, n, m, t) << endl;
}
0