結果

問題 No.251 大きな桁の復習問題(1)
ユーザー masamasa
提出日時 2015-11-08 19:55:56
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 688 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 62,508 KB
実行使用メモリ 4,476 KB
最終ジャッジ日時 2023-10-11 15:21:42
合計ジャッジ時間 6,742 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 357 ms
4,352 KB
testcase_03 WA -
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 1 ms
4,348 KB
testcase_08 AC 1 ms
4,348 KB
testcase_09 AC 589 ms
4,348 KB
testcase_10 AC 376 ms
4,352 KB
testcase_11 AC 44 ms
4,348 KB
testcase_12 AC 226 ms
4,348 KB
testcase_13 AC 536 ms
4,352 KB
testcase_14 AC 57 ms
4,352 KB
testcase_15 AC 270 ms
4,348 KB
testcase_16 AC 168 ms
4,356 KB
testcase_17 AC 620 ms
4,348 KB
testcase_18 AC 580 ms
4,348 KB
testcase_19 AC 404 ms
4,348 KB
testcase_20 AC 553 ms
4,352 KB
testcase_21 AC 1 ms
4,348 KB
testcase_22 AC 334 ms
4,348 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#include <utility>
#include <string>

using namespace std;

const long long P = 129402307;

int main() {
	string nstr, mstr;
	long long n, m;

	cin >> nstr >> mstr;

	n = 0;
	for (int i = 0; i < nstr.size(); i++) {
		n = (n * 10 + nstr[i] - '0') % P;
	}
	// 今、n = n % pだから n < p
	// またpが素数
	// なので n, pは互いに素
	// フェルマーの小定理
	// a^(p-1) ≡ 1 (mod p)

	m = 0;
	for (int i = 0; i < mstr.size(); i++) {
		m = (m * 10 + mstr[i] - '0') % (P - 1);
	}

	long long ans = n;
	for (int i = 1; i < m; i++) {
		ans = (ans * n) % P;
	}

	cout << ans << endl;
	return 0;
}
0