結果

問題 No.1974 2x2 Flipper
ユーザー ytftytft
提出日時 2022-06-11 08:07:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 504 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 78,436 KB
最終ジャッジ日時 2024-09-21 16:25:31
合計ジャッジ時間 5,993 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,152 KB
testcase_01 AC 62 ms
75,976 KB
testcase_02 AC 49 ms
64,820 KB
testcase_03 AC 95 ms
76,908 KB
testcase_04 AC 76 ms
76,636 KB
testcase_05 WA -
testcase_06 AC 86 ms
76,496 KB
testcase_07 AC 76 ms
76,436 KB
testcase_08 AC 63 ms
75,880 KB
testcase_09 AC 87 ms
76,960 KB
testcase_10 WA -
testcase_11 AC 82 ms
77,108 KB
testcase_12 AC 103 ms
77,388 KB
testcase_13 AC 86 ms
76,528 KB
testcase_14 AC 71 ms
75,952 KB
testcase_15 AC 107 ms
77,264 KB
testcase_16 WA -
testcase_17 AC 95 ms
77,092 KB
testcase_18 AC 53 ms
73,572 KB
testcase_19 AC 65 ms
76,088 KB
testcase_20 AC 76 ms
76,420 KB
testcase_21 AC 129 ms
78,436 KB
testcase_22 AC 125 ms
77,920 KB
testcase_23 AC 125 ms
78,100 KB
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input():return sys.stdin.readline().strip()
H,W=map(int,input().split())
if H%2:
	if W%2:
		print(H*W-max(H,W))
		for i in range(H):
			print(*[int(j==i or i>=W and j==W-1 or i==H-1 and j>=H-1) for j in range(W)])
	else:
		print(H*W-W)
		for i in range(H-1):
			print(*[1 for j in range(W)])
		print(*[0 for j in range(W)])
else:
	if W%2:
		print(H*W-H)
		for i in range(H):
			print(*([1 for j in range(W-1)]+[0]))
	else:
		print(H*W)
		for i in range(H):
			print(*[1 for j in range(W)])
0