結果

問題 No.403 2^2^2
ユーザー 👑 obakyanobakyan
提出日時 2019-05-02 11:49:35
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 798 bytes
コンパイル時間 858 ms
コンパイル使用メモリ 71,884 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-30 04:43:07
合計ジャッジ時間 2,242 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
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 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <cstddef>
#include <vector>
#include <algorithm>
#include <cmath>
#include <string>
#include <iostream>
#include <iomanip>
#define L64 long long
#define MOD (1000000007LL)

L64 modpow(L64 src, L64 pow, L64 mod)
{
  L64 res = 1;
  while (0 < pow) {
    if (pow % 2 == 1) {
      res = (res * src) % mod;
      pow--;
    }
    src = (src * src) % mod;
    pow /= 2;
  }
  return res;
}

L64 modinv(L64 src, L64 mod)
{
  return modpow(src, mod - 2, mod);
}

int main(void)
{
  L64 a, b, c;
  scanf("%lld^%lld^%lld", &a, &b, &c);
  L64 r1 = modpow(a % MOD, b, MOD);
  r1 = modpow(r1, c, MOD);
  L64 r2 = modpow(b % (MOD - 1LL), c, MOD - 1LL);
  std::cout << r2 << std::endl;
  r2 = modpow(a % MOD, r2, MOD);
  std::cout << r1 << " " << r2 << std::endl;
}
0