結果

問題 No.2112 All 2x2 are Equal
ユーザー flygonflygon
提出日時 2022-10-28 22:39:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 589 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 84,608 KB
最終ジャッジ日時 2024-07-06 01:51:14
合計ジャッジ時間 6,058 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 60 ms
71,424 KB
testcase_03 AC 58 ms
69,632 KB
testcase_04 WA -
testcase_05 AC 114 ms
80,476 KB
testcase_06 WA -
testcase_07 AC 92 ms
78,800 KB
testcase_08 AC 136 ms
82,432 KB
testcase_09 WA -
testcase_10 AC 102 ms
79,456 KB
testcase_11 AC 89 ms
77,904 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 50 ms
62,464 KB
testcase_17 AC 138 ms
82,292 KB
testcase_18 WA -
testcase_19 AC 71 ms
76,664 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 75 ms
77,272 KB
testcase_25 AC 79 ms
77,120 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 78 ms
76,952 KB
testcase_30 AC 95 ms
78,492 KB
testcase_31 AC 119 ms
80,740 KB
testcase_32 WA -
testcase_33 AC 157 ms
84,608 KB
testcase_34 WA -
testcase_35 AC 157 ms
84,608 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):
    tmp = i*w+j
    if tmp % 2 == 0:
      ans[i][j] = now
      now += 1
  
for i in range(h)[::-1]:
  for j in range(w)[::-1]:
    tmp = i*w+j
    if tmp % 2 == 1:
      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