結果
問題 | No.403 2^2^2 |
ユーザー |
![]() |
提出日時 | 2016-07-23 00:46:32 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 672 bytes |
コンパイル時間 | 678 ms |
コンパイル使用メモリ | 67,036 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-06 15:33:39 |
合計ジャッジ時間 | 1,628 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 27 |
ソースコード
#include <iostream> #include <vector> #include <cstring> #include <string> #include <algorithm> #include <iomanip> #include <cassert> using namespace std; typedef long long ll; const int mod = 1000000007; ll modpow(ll x, ll n, ll mod) { x %= mod; if(n == 0) return 1; ll res = modpow(x * x % mod, n / 2, mod); if(n & 1) res = res * x % mod; return res; } int main() { cin.tie(0); ios::sync_with_stdio(false); ll A, B, C; char c; cin >> A >> c >> B >> c >> C; if(A % mod == 0) { cout << "0 0" << endl; return 0; } ll ans1 = modpow(modpow(A, B, mod), C, mod); ll ans2 = modpow(A, modpow(B, C, mod - 1), mod); cout << ans1 << " " << ans2 << endl; }