結果

問題 No.1677 mæx
ユーザー tailstails
提出日時 2021-09-14 18:10:34
言語 Perl
(5.38.2)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 6,684 KB
実行使用メモリ 30,684 KB
最終ジャッジ日時 2024-06-27 08:48:15
合計ジャッジ時間 4,021 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 170 ms
27,968 KB
testcase_05 AC 172 ms
28,736 KB
testcase_06 AC 164 ms
28,904 KB
testcase_07 AC 168 ms
28,840 KB
testcase_08 AC 167 ms
28,000 KB
testcase_09 AC 165 ms
28,844 KB
testcase_10 AC 165 ms
28,608 KB
testcase_11 AC 166 ms
28,736 KB
testcase_12 AC 166 ms
28,700 KB
testcase_13 AC 164 ms
28,836 KB
testcase_14 AC 216 ms
30,144 KB
testcase_15 AC 214 ms
30,552 KB
testcase_16 AC 213 ms
30,508 KB
testcase_17 AC 217 ms
30,544 KB
testcase_18 AC 220 ms
30,424 KB
testcase_19 AC 4 ms
6,940 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 209 ms
30,684 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Possible attempt to separate words with commas at Main.pl line 17.
Main.pl syntax OK

ソースコード

diff #

sub MD{998244353}
sub max{
	($a,$b,$c,$d,$e,$f)=@_;
	return map$_%MD,$a*$d,$a*$e+$b*$d+$b*$e,$a*$f+$b*$f+$c*$d+$c*$e+$c*$f;
}
sub mex{
	($a,$b,$c,$d,$e,$f)=@_;
	return map$_%MD,$b*$e+$b*$f+$c*$e+$c*$f,$a*$d+$a*$f+$c*$d,$a*$e+$b*$d;
}
sub m3x{
	@a=&max;
	@e=&mex;
	return map$_%MD,map$a[$_]+$e[$_],0..2;
}
$_=<>;
y/?/3/;
s/\b\d/qw(1,0,0 0,1,0 0,0,1 1,1,1)[$&]/ge;
print+(eval)[<>]
0