結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 WA -
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 1 ms
4,376 KB
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 2 ms
4,376 KB
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 1 ms
4,380 KB
testcase_17 AC 2 ms
4,380 KB
testcase_18 AC 2 ms
4,376 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 AC 1 ms
4,376 KB
testcase_22 AC 1 ms
4,380 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 3 ms
4,376 KB
testcase_26 AC 2 ms
4,376 KB
testcase_27 AC 1 ms
4,376 KB
testcase_28 WA -
testcase_29 AC 1 ms
4,376 KB
testcase_30 AC 1 ms
4,376 KB
testcase_31 AC 1 ms
4,380 KB
testcase_32 WA -
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 (M <= 1)
	{
		return 3000 * M;
	}
	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;
		}
		//temp %= M;
		if (temp == 0) return 0;
	} while (m[temp] == 0);
	int loop = v.size() - (m[temp] - 1);
	int nextminus = (int)v.size() - loop;
	//cout << nextminus << " " << loop << endl;

	int r = dfs(A, N - 1, loop);
	if (r >= nextminus){
		r %= loop;
		if (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