結果

問題 No.368 LCM of K-products
ユーザー %20%20
提出日時 2018-07-13 03:28:45
言語 Perl
(5.38.2)
結果
AC  
実行時間 527 ms / 2,000 ms
コード長 166 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 147,712 KB
最終ジャッジ日時 2024-09-22 14:56:13
合計ジャッジ時間 3,877 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
55,040 KB
testcase_01 AC 527 ms
147,712 KB
testcase_02 AC 21 ms
6,944 KB
testcase_03 AC 136 ms
44,416 KB
testcase_04 AC 207 ms
66,048 KB
testcase_05 AC 249 ms
76,672 KB
testcase_06 AC 4 ms
6,944 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 4 ms
6,944 KB
testcase_12 AC 5 ms
6,944 KB
testcase_13 AC 74 ms
32,768 KB
testcase_14 AC 157 ms
65,920 KB
testcase_15 AC 232 ms
78,976 KB
testcase_16 AC 144 ms
61,696 KB
testcase_17 AC 102 ms
46,976 KB
testcase_18 AC 198 ms
81,536 KB
testcase_19 AC 23 ms
11,520 KB
testcase_20 AC 99 ms
41,088 KB
testcase_21 AC 12 ms
8,064 KB
testcase_22 AC 183 ms
75,264 KB
testcase_23 AC 5 ms
6,940 KB
testcase_24 AC 4 ms
6,940 KB
testcase_25 AC 4 ms
6,944 KB
testcase_26 AC 4 ms
6,944 KB
testcase_27 AC 5 ms
6,944 KB
testcase_28 AC 5 ms
6,944 KB
testcase_29 AC 4 ms
6,944 KB
testcase_30 AC 4 ms
6,940 KB
testcase_31 AC 4 ms
6,940 KB
testcase_32 AC 5 ms
6,940 KB
testcase_33 AC 33 ms
18,688 KB
testcase_34 AC 59 ms
25,600 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

<>=~$";$K=$';
for(`factor`){
	++$h{$_}[$i]for/ \d+/g;++$i
}
$%=1e9+7;
$x=1;
for$k(keys%h){
	for((sort{$b-$a}@{$h{$k}})[0..$K-1]){
		$x=$x*$k%$%for 1..$_
	}
}
print$x
0