結果

問題 No.251 大きな桁の復習問題(1)
ユーザー tailstails
提出日時 2015-07-25 02:10:41
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 140 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 15,488 KB
最終ジャッジ日時 2024-07-16 04:27:15
合計ジャッジ時間 2,903 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
12,800 KB
testcase_01 AC 54 ms
12,800 KB
testcase_02 AC 57 ms
12,928 KB
testcase_03 AC 53 ms
12,800 KB
testcase_04 WA -
testcase_05 AC 53 ms
12,800 KB
testcase_06 WA -
testcase_07 AC 53 ms
12,800 KB
testcase_08 AC 53 ms
12,672 KB
testcase_09 AC 107 ms
15,232 KB
testcase_10 AC 109 ms
15,104 KB
testcase_11 AC 109 ms
15,104 KB
testcase_12 AC 109 ms
15,104 KB
testcase_13 AC 110 ms
15,232 KB
testcase_14 AC 110 ms
15,104 KB
testcase_15 AC 110 ms
15,232 KB
testcase_16 AC 110 ms
14,976 KB
testcase_17 AC 118 ms
15,488 KB
testcase_18 AC 110 ms
15,232 KB
testcase_19 AC 109 ms
15,232 KB
testcase_20 AC 56 ms
12,800 KB
testcase_21 AC 53 ms
12,928 KB
testcase_22 AC 55 ms
12,800 KB
testcase_23 AC 53 ms
12,800 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use bigint;
$p=129402307;
sub f{
	my($n,$m)=@_;
	$m?$m&1?f($n,$m-1)*$n%$p:f($n*$n%$p,$m/2):1;
}
$n=<>;$m=<>;
print$n?$m?f$n%$p,$m%($p-1):1:0
0