結果

問題 No.251 大きな桁の復習問題(1)
ユーザー tailstails
提出日時 2015-07-25 02:12:58
言語 Perl
(5.38.2)
結果
AC  
実行時間 107 ms / 5,000 ms
コード長 149 bytes
コンパイル時間 1,019 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 15,872 KB
最終ジャッジ日時 2024-05-09 22:46:50
合計ジャッジ時間 3,434 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
12,672 KB
testcase_01 AC 47 ms
12,672 KB
testcase_02 AC 48 ms
12,672 KB
testcase_03 AC 46 ms
12,544 KB
testcase_04 AC 45 ms
12,672 KB
testcase_05 AC 46 ms
12,544 KB
testcase_06 AC 47 ms
12,544 KB
testcase_07 AC 46 ms
12,544 KB
testcase_08 AC 45 ms
12,800 KB
testcase_09 AC 93 ms
15,232 KB
testcase_10 AC 97 ms
15,104 KB
testcase_11 AC 96 ms
15,232 KB
testcase_12 AC 96 ms
15,104 KB
testcase_13 AC 96 ms
15,232 KB
testcase_14 AC 95 ms
15,232 KB
testcase_15 AC 96 ms
15,232 KB
testcase_16 AC 96 ms
15,232 KB
testcase_17 AC 107 ms
15,872 KB
testcase_18 AC 99 ms
15,232 KB
testcase_19 AC 97 ms
15,232 KB
testcase_20 AC 46 ms
12,800 KB
testcase_21 AC 47 ms
12,800 KB
testcase_22 AC 49 ms
12,672 KB
testcase_23 AC 48 ms
12,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

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