結果

問題 No.2112 All 2x2 are Equal
ユーザー tailstails
提出日時 2022-10-28 21:52:44
言語 Perl
(5.38.2)
結果
AC  
実行時間 268 ms / 2,000 ms
コード長 104 bytes
コンパイル時間 502 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-06 00:59:35
合計ジャッジ時間 7,428 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
6,812 KB
testcase_01 AC 6 ms
6,940 KB
testcase_02 AC 13 ms
6,940 KB
testcase_03 AC 11 ms
6,944 KB
testcase_04 AC 104 ms
6,940 KB
testcase_05 AC 139 ms
6,940 KB
testcase_06 AC 233 ms
6,940 KB
testcase_07 AC 78 ms
6,940 KB
testcase_08 AC 190 ms
6,940 KB
testcase_09 AC 17 ms
6,940 KB
testcase_10 AC 88 ms
6,944 KB
testcase_11 AC 62 ms
6,940 KB
testcase_12 AC 71 ms
6,940 KB
testcase_13 AC 210 ms
6,940 KB
testcase_14 AC 17 ms
6,940 KB
testcase_15 AC 157 ms
6,940 KB
testcase_16 AC 7 ms
6,940 KB
testcase_17 AC 190 ms
6,944 KB
testcase_18 AC 11 ms
6,944 KB
testcase_19 AC 21 ms
6,944 KB
testcase_20 AC 11 ms
6,944 KB
testcase_21 AC 180 ms
6,940 KB
testcase_22 AC 15 ms
6,940 KB
testcase_23 AC 13 ms
6,940 KB
testcase_24 AC 27 ms
6,944 KB
testcase_25 AC 38 ms
6,944 KB
testcase_26 AC 28 ms
6,944 KB
testcase_27 AC 50 ms
6,940 KB
testcase_28 AC 116 ms
6,940 KB
testcase_29 AC 20 ms
6,940 KB
testcase_30 AC 77 ms
6,940 KB
testcase_31 AC 141 ms
6,944 KB
testcase_32 AC 263 ms
6,940 KB
testcase_33 AC 268 ms
6,016 KB
testcase_34 AC 249 ms
6,940 KB
testcase_35 AC 264 ms
6,016 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

($h,$w)=glob<>;
print"Yes\n";
$a=$h*$w;
for$y(1..$h){
	print join($",map{$_+$y&1?$a--:++$b}1..$w),$/;
}
0