結果

問題 No.181 A↑↑N mod M
ユーザー 古寺いろは古寺いろは
提出日時 2015-04-06 00:58:21
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 947 bytes
コンパイル時間 1,107 ms
コンパイル使用メモリ 153,864 KB
実行使用メモリ 4,500 KB
最終ジャッジ日時 2023-09-17 05:43:48
合計ジャッジ時間 2,545 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

long long dfs(int A, int N, int M){
	if (N == 0) return 1;
	if (N == 1)
	{
		return A;
	}
	if (N == 2){
		if (A < 7){
			long long ans = 1;
			for (int i = 0; i < A; i++)
			{
				ans *= A;
			}
			return ans;
		}
	}
	if (M <= 1)
	{
		return 3000;
	}
	vector<long long> v;
	if (A % M == 0) return 0;
	long long temp = 1;
	map<long long, int> m;
	bool ok = false;
	do{
		m[temp] = v.size() + 1;
		v.push_back((int)temp);
		temp *= A;
		if (temp >= M * 3001){
			temp %= M;
			temp += M * 3000;
			ok = true;
		}
		if (ok && temp < M * 3000){
			temp %= M;
			temp += M * 3000;
		}
	} while (m[temp] == 0);
	int loop = v.size() - (m[temp] - 1);
	int nextminus = (int)v.size() - loop;

	int r = dfs(A, N - 1, loop);
	if (r >= nextminus){
		r %= loop;
		while (r < nextminus) r += loop;
	}
	return v[r];
}

int main() {
	int A, N, M;
	cin >> A >> N >> M;
	cout << dfs(A, N, M) % M << endl;
	cin >> A;
}

0