結果

問題 No.1398 調和の魔法陣 (構築)
ユーザー tailstails
提出日時 2021-02-19 21:42:24
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 282 bytes
コンパイル時間 651 ms
コンパイル使用メモリ 5,888 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2024-09-16 18:04:51
合計ジャッジ時間 29,877 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,888 KB
testcase_01 AC 8 ms
5,760 KB
testcase_02 WA -
testcase_03 AC 7 ms
5,888 KB
testcase_04 AC 7 ms
5,760 KB
testcase_05 AC 8 ms
5,888 KB
testcase_06 AC 122 ms
5,760 KB
testcase_07 WA -
testcase_08 AC 115 ms
5,760 KB
testcase_09 AC 120 ms
5,888 KB
testcase_10 WA -
testcase_11 AC 121 ms
5,888 KB
testcase_12 WA -
testcase_13 AC 115 ms
5,888 KB
testcase_14 AC 120 ms
5,888 KB
testcase_15 WA -
testcase_16 AC 106 ms
5,888 KB
testcase_17 AC 111 ms
5,888 KB
testcase_18 AC 115 ms
5,888 KB
testcase_19 AC 121 ms
5,888 KB
testcase_20 WA -
testcase_21 AC 116 ms
5,888 KB
testcase_22 AC 121 ms
5,888 KB
testcase_23 WA -
testcase_24 AC 120 ms
5,888 KB
testcase_25 WA -
testcase_26 AC 116 ms
5,888 KB
testcase_27 AC 120 ms
5,888 KB
testcase_28 WA -
testcase_29 AC 121 ms
5,888 KB
testcase_30 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::a" used only once: possible typo at Main.pl line 12.
Main.pl syntax OK

ソースコード

diff #

($w,$h,$z)=glob<>;
$s=($w%3==2?2:1)*int(($w+2)/3);
$t=($h%3==2?2:1)*int(($h+2)/3);

if($z>$s*$t*9){
	print -1;
	exit;
}

for$y(0..$h-1){
	for$x(0..$w-1){
		print $a[$y%3*3+$x%3]//=do{$y%3==2||($h-$y)%3==0||$x%3==2||($w-$x)%3==0 ? 0 : $z>9?($z-=9,9):($t=$z,$z=0,$t)};
	}
	print$/;
}
0