結果

問題 No.1677 mæx
ユーザー tailstails
提出日時 2021-09-14 17:57:16
言語 Perl
(5.38.2)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 30,796 KB
最終ジャッジ日時 2024-06-27 08:33:37
合計ジャッジ時間 4,413 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,504 KB
testcase_01 AC 3 ms
5,632 KB
testcase_02 AC 3 ms
5,504 KB
testcase_03 AC 4 ms
5,504 KB
testcase_04 AC 173 ms
28,416 KB
testcase_05 AC 184 ms
29,320 KB
testcase_06 AC 179 ms
29,216 KB
testcase_07 AC 180 ms
29,168 KB
testcase_08 AC 176 ms
28,444 KB
testcase_09 AC 174 ms
29,036 KB
testcase_10 AC 180 ms
28,932 KB
testcase_11 AC 175 ms
29,060 KB
testcase_12 AC 176 ms
29,096 KB
testcase_13 AC 172 ms
29,168 KB
testcase_14 AC 231 ms
30,516 KB
testcase_15 AC 237 ms
30,668 KB
testcase_16 AC 231 ms
30,500 KB
testcase_17 AC 232 ms
30,792 KB
testcase_18 AC 229 ms
30,544 KB
testcase_19 AC 4 ms
5,504 KB
testcase_20 AC 3 ms
5,504 KB
testcase_21 AC 227 ms
30,796 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 mx{
	@a=max(@_);
	@e=mex(@_);
	return map$_%MD,map$a[$_]+$e[$_],0..2;
}
$_=<>;
s/\b\?//g;
s/\d/qw(1,0,0 0,1,0 0,0,1)[$&]/ge;
s/\?/1,1,1/g;
print+(eval)[<>]
0