結果

問題 No.1851 Regular Tiling
ユーザー tailstails
提出日時 2022-03-01 12:29:11
言語 Bash
(Bash 5.1.16)
結果
TLE  
実行時間 -
コード長 98 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-07-07 18:13:00
合計ジャッジ時間 14,526 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,624 KB
testcase_01 AC 713 ms
5,376 KB
testcase_02 AC 866 ms
5,376 KB
testcase_03 AC 827 ms
5,376 KB
testcase_04 AC 802 ms
5,376 KB
testcase_05 AC 802 ms
5,376 KB
testcase_06 AC 919 ms
5,376 KB
testcase_07 AC 751 ms
5,376 KB
testcase_08 AC 779 ms
5,376 KB
testcase_09 AC 928 ms
5,376 KB
testcase_10 AC 825 ms
5,376 KB
testcase_11 AC 17 ms
5,376 KB
testcase_12 AC 18 ms
5,376 KB
testcase_13 AC 1,577 ms
5,376 KB
testcase_14 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

read
while
read h w
do
for((y=h;y;--y)){
	eval echo '$[('{1..$w}'%3!=w%3<2)+(y%3!=h%3<2)]'
}
done
0