結果

問題 No.181 A↑↑N mod M
ユーザー startcppstartcpp
提出日時 2015-04-06 00:43:27
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 751 bytes
コンパイル時間 573 ms
コンパイル使用メモリ 73,272 KB
実行使用メモリ 4,388 KB
最終ジャッジ日時 2023-09-17 05:38:37
合計ジャッジ時間 39,049 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1,876 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 171 ms
4,380 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1,410 ms
4,376 KB
testcase_10 WA -
testcase_11 AC 277 ms
4,380 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 1,879 ms
4,376 KB
testcase_19 AC 1,879 ms
4,376 KB
testcase_20 AC 2 ms
4,376 KB
testcase_21 AC 1 ms
4,380 KB
testcase_22 AC 1,878 ms
4,376 KB
testcase_23 WA -
testcase_24 AC 1,878 ms
4,380 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 2 ms
4,380 KB
testcase_28 WA -
testcase_29 AC 2 ms
4,380 KB
testcase_30 AC 1 ms
4,380 KB
testcase_31 WA -
testcase_32 AC 2 ms
4,376 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 139 ms
4,380 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

//大嘘解法。右結合の計算において、計算結果を計算結果(mod m)に置き換えていく。
//例:(3^3^3)(mod 10) = (3^((3^3)mod10)) = (3^7)(mod 10) = 7
#include<iostream>
#include<string>
#include<algorithm>
#include<functional>
#include<vector>
#include<cstdio>
#include<cstring>
#include<cstring>
#include<cmath>
#include<stack>
#include<queue>
#include<set>
#include<map>
#define int long long
using namespace std;

int a, n, m;
int pwd[2001];

void Pwd(int a, int m) {
	int ret = 1;
	for(int i = 0; i <= m; i++ ) {
		pwd[i] = ret;
		ret *= a;
		ret %= m;
	}
}

signed main() {
	int i, j;
	
	cin >> a >> n >> m;
	Pwd(a, m);
	
	int jyo = 1;
	for( i = 0; i < n; i++ ) {
		jyo = pwd[jyo];
	}
	cout << jyo%m << endl;
	return 0;
}
0