結果

問題 No.606 カラフルタイル
ユーザー tailstails
提出日時 2017-12-06 00:10:28
言語 Perl
(5.38.2)
結果
AC  
実行時間 709 ms / 2,000 ms
コード長 181 bytes
コンパイル時間 712 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 32,768 KB
最終ジャッジ日時 2024-11-28 18:33:02
合計ジャッジ時間 9,096 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
6,820 KB
testcase_01 AC 6 ms
6,820 KB
testcase_02 AC 6 ms
6,816 KB
testcase_03 AC 7 ms
6,820 KB
testcase_04 AC 7 ms
6,820 KB
testcase_05 AC 8 ms
6,820 KB
testcase_06 AC 6 ms
6,816 KB
testcase_07 AC 6 ms
6,816 KB
testcase_08 AC 6 ms
6,816 KB
testcase_09 AC 7 ms
6,816 KB
testcase_10 AC 6 ms
6,816 KB
testcase_11 AC 7 ms
6,820 KB
testcase_12 AC 7 ms
6,816 KB
testcase_13 AC 53 ms
7,552 KB
testcase_14 AC 7 ms
6,820 KB
testcase_15 AC 12 ms
6,816 KB
testcase_16 AC 466 ms
20,736 KB
testcase_17 AC 709 ms
32,768 KB
testcase_18 AC 570 ms
29,696 KB
testcase_19 AC 545 ms
26,752 KB
testcase_20 AC 639 ms
28,672 KB
testcase_21 AC 572 ms
26,496 KB
testcase_22 AC 572 ms
26,496 KB
testcase_23 AC 626 ms
26,368 KB
testcase_24 AC 643 ms
27,520 KB
testcase_25 AC 497 ms
20,992 KB
testcase_26 AC 602 ms
32,768 KB
testcase_27 AC 631 ms
32,768 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::h" used only once: possible typo at Main.pl line 5.
Name "main::q" used only once: possible typo at Main.pl line 1.
Main.pl syntax OK

ソースコード

diff #

($n,$k,$q)=glob<>;
$n{R}=$n{C}=$n;
for(reverse<>){
	($a,$b,$c)=glob<>;
	if(!$h{$a,$b}++){
		$o[$c]+=$n{R^C^$a};
		--$n{$a};
	}
}
$o[1]+=$n{R}*$n{C};
for(1..$k){
	print$o[$_]+0,$/;
}
0