結果

問題 No.2112 All 2x2 are Equal
ユーザー とりゐとりゐ
提出日時 2022-10-28 22:50:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 1,547 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 93,020 KB
最終ジャッジ日時 2024-07-06 02:03:34
合計ジャッジ時間 9,402 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,992 KB
testcase_01 AC 36 ms
53,016 KB
testcase_02 AC 69 ms
76,848 KB
testcase_03 AC 63 ms
74,892 KB
testcase_04 AC 170 ms
82,980 KB
testcase_05 AC 175 ms
81,292 KB
testcase_06 AC 259 ms
84,540 KB
testcase_07 AC 128 ms
79,020 KB
testcase_08 AC 218 ms
82,996 KB
testcase_09 AC 75 ms
77,252 KB
testcase_10 AC 137 ms
79,244 KB
testcase_11 AC 112 ms
78,824 KB
testcase_12 AC 135 ms
81,064 KB
testcase_13 AC 243 ms
83,700 KB
testcase_14 AC 73 ms
77,152 KB
testcase_15 AC 206 ms
86,684 KB
testcase_16 AC 52 ms
65,128 KB
testcase_17 AC 218 ms
82,612 KB
testcase_18 AC 71 ms
76,428 KB
testcase_19 AC 77 ms
76,768 KB
testcase_20 AC 74 ms
77,060 KB
testcase_21 AC 238 ms
88,120 KB
testcase_22 AC 73 ms
77,048 KB
testcase_23 AC 70 ms
76,556 KB
testcase_24 AC 88 ms
76,936 KB
testcase_25 AC 90 ms
77,556 KB
testcase_26 AC 84 ms
77,036 KB
testcase_27 AC 113 ms
79,332 KB
testcase_28 AC 170 ms
83,624 KB
testcase_29 AC 86 ms
76,916 KB
testcase_30 AC 130 ms
78,920 KB
testcase_31 AC 184 ms
81,452 KB
testcase_32 AC 276 ms
85,360 KB
testcase_33 AC 265 ms
84,988 KB
testcase_34 AC 297 ms
93,020 KB
testcase_35 AC 268 ms
84,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def calc(h,w):
  # w is odd
  ans=[[0]*w for i in range(h)]
  for i in range(h):
    for j in range(w):
      if i%2==0:
        ans[i][j]=j+1
      else:
        ans[i][j]=w-j
  
  for i in range((h+1)//2):
    if 2*i+1!=h:
      i1=2*i
      i2=i1+1
      for j in range(w):
        if j%2==0:
          ans[i1][j]+=w*i
          ans[i2][j]+=w*(h-1-i)
        else:
          ans[i2][j]+=w*i
          ans[i1][j]+=w*(h-1-i)  
    else:
      for j in range(w):
        ans[-1][j]+=w*(h//2)
  return ans

def calc2(h,w):
  # w and h are even
  ans=[[0]*w for i in range(h)]
  for i in range(h):
    for j in range(w):
      if i%2==0:
        ans[i][j]=j+1
      else:
        ans[i][j]=w-j
  
  for i in range(h//2):
    i1=2*i
    i2=2*i+1
    for j in range(w//2):
      if j%2==0:
        ans[i1][j]+=w*i
        ans[i2][j]+=w*(h-1-i)
      else:
        ans[i2][j]+=w*i
        ans[i1][j]+=w*(h-1-i)
    for j in range(w//2,w):
      if j%2==0:
        ans[h-1-i1][j]+=w*i
        ans[h-1-i2][j]+=w*(h-1-i)
      else:
        ans[h-1-i2][j]+=w*i
        ans[h-1-i1][j]+=w*(h-1-i)
  
  return ans

h,w=map(int,input().split())
if w%2==1:
  ans=calc(h,w)
  
elif h%2==1:
  tmp=calc(w,h)
  ans=[[0]*w for i in range(h)]
  for i in range(h):
    for j in range(w):
      ans[i][j]=tmp[j][i]

else:
  ans=calc2(h,w)

print('Yes')
for i in ans:
  print(*i)

s=set()
for i in range(h-1):
  for j in range(w-1):
    tmp=0
    for di in range(2):
      for dj in range(2):
        tmp+=ans[i+di][j+dj]
    s.add(tmp)

if len(s)!=1:
  raise Exception
0