結果

問題 No.1974 2x2 Flipper
ユーザー とりゐとりゐ
提出日時 2022-06-10 22:19:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 571 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 86,256 KB
最終ジャッジ日時 2024-09-21 06:29:29
合計ジャッジ時間 5,533 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,328 KB
testcase_01 AC 68 ms
76,068 KB
testcase_02 AC 48 ms
63,456 KB
testcase_03 AC 114 ms
77,296 KB
testcase_04 AC 79 ms
76,092 KB
testcase_05 WA -
testcase_06 AC 94 ms
76,428 KB
testcase_07 AC 82 ms
75,500 KB
testcase_08 AC 59 ms
76,528 KB
testcase_09 AC 95 ms
76,536 KB
testcase_10 WA -
testcase_11 AC 85 ms
76,040 KB
testcase_12 AC 113 ms
76,996 KB
testcase_13 AC 89 ms
75,948 KB
testcase_14 AC 72 ms
75,904 KB
testcase_15 AC 117 ms
77,020 KB
testcase_16 WA -
testcase_17 AC 104 ms
76,468 KB
testcase_18 AC 53 ms
73,604 KB
testcase_19 AC 60 ms
75,876 KB
testcase_20 AC 78 ms
76,848 KB
testcase_21 AC 136 ms
78,020 KB
testcase_22 AC 137 ms
77,624 KB
testcase_23 AC 145 ms
77,800 KB
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w=map(int,input().split())
if min(h,w)==0:
  print(0)
  for i in range(h):
    print(*[0]*w)
  exit()

if h%2==0 and w%2==0:
  print(h*w)
  for i in range(h):
    print(*[1]*w)
  exit()

if h%2==0:
  print(h*(w-1))
  for i in range(h):
    print(*[1]*(w-1)+[0])
  exit()

if w%2==0:
  print((h-1)*w)
  for i in range(h-1):
    print(*[1]*w)
  print(*[0]*w)
  exit()

ans=[[0]*w for i in range(h)]
for i in range(h-1):
  for j in range(w-1):
    ans[i][j]=1

ans[h-2][w-2]=0
ans[h-2][w-1]=1
ans[h-1][w-2]=1
ans[h-1][w-1]=1

print((h-1)*(w-1)+2)
for i in ans:
  print(*i)
0