結果

問題 No.2112 All 2x2 are Equal
ユーザー タコイモタコイモ
提出日時 2022-10-28 23:01:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 641 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 93,056 KB
最終ジャッジ日時 2024-07-06 02:14:38
合計ジャッジ時間 6,897 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,660 KB
testcase_01 AC 34 ms
53,308 KB
testcase_02 AC 47 ms
70,528 KB
testcase_03 AC 47 ms
69,680 KB
testcase_04 WA -
testcase_05 AC 104 ms
84,888 KB
testcase_06 AC 142 ms
91,776 KB
testcase_07 AC 84 ms
80,852 KB
testcase_08 AC 118 ms
88,992 KB
testcase_09 WA -
testcase_10 AC 89 ms
82,292 KB
testcase_11 AC 74 ms
79,708 KB
testcase_12 WA -
testcase_13 AC 124 ms
90,516 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 41 ms
62,832 KB
testcase_17 AC 114 ms
88,244 KB
testcase_18 AC 47 ms
67,508 KB
testcase_19 AC 60 ms
76,696 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 45 ms
68,520 KB
testcase_24 AC 65 ms
77,952 KB
testcase_25 AC 63 ms
78,040 KB
testcase_26 AC 57 ms
77,304 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 67 ms
77,664 KB
testcase_30 AC 81 ms
80,932 KB
testcase_31 AC 108 ms
85,592 KB
testcase_32 AC 134 ms
93,056 KB
testcase_33 AC 135 ms
92,696 KB
testcase_34 WA -
testcase_35 AC 140 ms
92,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W= map(int,input().split())
print('Yes')
K = [i for i in range(1,H*W+1)]
S = 1+H*W
count = 1
co = H*W
ans = [[0]*W for _ in range(H)]
ans[0][0] = 1
for i in range(H//2):
  for j in range(W):
    if j % 2 == 0:
      ans[2*i][j] = count
      ans[2*i+1][j] = co
      count += 1
      co -= 1
    else:
      ans[2*i][j] = co
      ans[2*i+1][j] = count
      count += 1
      co -= 1
  print(*ans[2*i])
  print(*ans[2*i+1])
if H % 2 == 1:
  D = ans[-2][0]+ans[-2][1]
  ans[-1][0] = count
  for j in range(1,W):
    if j % 2 == 0:
      
      ans[-1][j] = D-ans[-1][j-1] 
    else:
      ans[-1][j] = D-ans[-1][j-1]-2
  print(*ans[-1])
  
0