結果

問題 No.1974 2x2 Flipper
ユーザー prussian_coderprussian_coder
提出日時 2022-06-10 22:26:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-09-21 07:08:07
合計ジャッジ時間 4,970 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 64 ms
75,704 KB
testcase_02 AC 50 ms
62,208 KB
testcase_03 AC 110 ms
76,928 KB
testcase_04 AC 80 ms
75,648 KB
testcase_05 AC 79 ms
76,528 KB
testcase_06 AC 100 ms
76,288 KB
testcase_07 AC 88 ms
76,032 KB
testcase_08 AC 64 ms
74,744 KB
testcase_09 AC 95 ms
76,544 KB
testcase_10 AC 84 ms
75,776 KB
testcase_11 AC 92 ms
75,904 KB
testcase_12 AC 111 ms
77,056 KB
testcase_13 AC 93 ms
76,160 KB
testcase_14 AC 74 ms
76,316 KB
testcase_15 AC 117 ms
77,184 KB
testcase_16 AC 64 ms
75,904 KB
testcase_17 AC 102 ms
76,672 KB
testcase_18 AC 58 ms
72,448 KB
testcase_19 AC 67 ms
76,160 KB
testcase_20 AC 84 ms
76,524 KB
testcase_21 AC 133 ms
77,864 KB
testcase_22 AC 133 ms
77,568 KB
testcase_23 AC 133 ms
78,208 KB
testcase_24 AC 142 ms
77,824 KB
testcase_25 AC 37 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())
if H%2==0 and W%2==0:
	print(H*W)
	[print(*[1]*W) for _ in range(H)]
elif H%2!=0 and W%2==0:
	print((H-1)*W)
	[print(*[1]*W) for _ in range(H-1)]
	print(*[0]*W)
elif W%2!=0 and H%2==0:
	print((W-1)*H)
	[print(*[1]*(W-1)+[0]) for _ in range(H)]
else:
	print(H*W-max(H,W))
	d=[1,0]
	[print(*[d[min(i,W-1)==min(j,H-1)] for j in range(W)]) for i in range(H)]
0