結果
問題 |
No.403 2^2^2
|
ユーザー |
![]() |
提出日時 | 2016-07-28 07:50:20 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,187 bytes |
コンパイル時間 | 716 ms |
コンパイル使用メモリ | 79,296 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-06 18:04:54 |
合計ジャッジ時間 | 1,689 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 19 WA * 8 |
ソースコード
#define _CRT_SECURE_NO_WARNINGS // #pragma warning(disable:4996) #include <iostream> #include <cstdio> #include <algorithm> #include <vector> #include <string> #include <queue> #include <functional> #include <sstream> #include <cmath> #include <set> #include <map> using namespace std; #define rep(i,a,b) for(int i=(a);i<(b);i++) #define pb push_back #define mp(a,b) make_pair(a,b) #define all(a) a.begin(),a.end() #define len(x) ((int)(x).size()) #define tmax(a,b,c) max((a),max((b),(c))) #define debug(x) cerr << #x << " is " << x << endl; typedef pair<int, int> Pii; typedef vector<int> V; typedef vector<vector<int> > VV; typedef long long ll; const int inf = 2e9; const int mod = 1e9 + 7; const long double eps = 1e-10; ll modpow(ll a, ll b, ll p) { if (a == p) return 0; if (b == 0) return 1; ll ret = modpow(a, b/2, p); if (b%2 == 0) ret = (ret*ret)%p; else ret = (((ret*ret)%p)*a)%p; return ret; } int main() { char x; ll a, b, c; cin >> a >> x >> b >> x >> c; ll d = modpow(a,b,mod); ll e = modpow(d,c,mod); //debug(d); cout << e << " "; ll f = modpow(b,c,mod-1); ll g = modpow(a,f,mod); //cout << endl; debug(f); cout << g << endl; return 0; }