結果

問題 No.2112 All 2x2 are Equal
ユーザー flygonflygon
提出日時 2022-10-28 22:43:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 573 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 85,316 KB
最終ジャッジ日時 2024-07-06 01:56:45
合計ジャッジ時間 7,631 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 59 ms
71,808 KB
testcase_03 AC 59 ms
69,248 KB
testcase_04 AC 111 ms
79,744 KB
testcase_05 AC 123 ms
80,768 KB
testcase_06 AC 169 ms
84,272 KB
testcase_07 AC 102 ms
78,720 KB
testcase_08 AC 140 ms
82,432 KB
testcase_09 AC 67 ms
76,416 KB
testcase_10 AC 101 ms
78,976 KB
testcase_11 AC 92 ms
78,788 KB
testcase_12 AC 99 ms
78,548 KB
testcase_13 AC 143 ms
83,072 KB
testcase_14 AC 63 ms
73,344 KB
testcase_15 AC 127 ms
81,312 KB
testcase_16 AC 50 ms
62,708 KB
testcase_17 AC 140 ms
82,816 KB
testcase_18 AC 60 ms
68,992 KB
testcase_19 AC 75 ms
76,672 KB
testcase_20 AC 68 ms
72,704 KB
testcase_21 AC 132 ms
82,560 KB
testcase_22 AC 61 ms
72,704 KB
testcase_23 AC 56 ms
69,376 KB
testcase_24 AC 76 ms
77,400 KB
testcase_25 AC 80 ms
77,236 KB
testcase_26 AC 71 ms
76,756 KB
testcase_27 AC 84 ms
77,712 KB
testcase_28 AC 109 ms
79,940 KB
testcase_29 AC 80 ms
76,852 KB
testcase_30 AC 97 ms
78,704 KB
testcase_31 AC 122 ms
81,280 KB
testcase_32 AC 161 ms
84,736 KB
testcase_33 AC 157 ms
85,048 KB
testcase_34 AC 158 ms
84,992 KB
testcase_35 AC 163 ms
85,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

flg = True
s = ans[0][0] + ans[0][1] + ans[1][0] + ans[1][1]
for i in range(h-1):
  for j in range(w-1):
    if ans[i][j] +ans[i+1][j] +ans[i][j+1] +ans[i+1][j+1] == s: continue
    flg = False 
if flg:
  print('Yes')
  for i in ans:
    print(*i)   
else:
  print('No') 
0