結果

問題 No.2112 All 2x2 are Equal
ユーザー vltmttvltmtt
提出日時 2023-02-19 02:21:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 85,004 KB
最終ジャッジ日時 2024-07-20 07:24:19
合計ジャッジ時間 7,190 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 56 ms
69,632 KB
testcase_03 AC 53 ms
67,584 KB
testcase_04 AC 108 ms
79,532 KB
testcase_05 AC 119 ms
80,640 KB
testcase_06 AC 150 ms
84,224 KB
testcase_07 AC 95 ms
78,464 KB
testcase_08 AC 142 ms
82,304 KB
testcase_09 AC 68 ms
73,216 KB
testcase_10 AC 109 ms
79,488 KB
testcase_11 AC 87 ms
77,988 KB
testcase_12 AC 96 ms
78,664 KB
testcase_13 AC 148 ms
83,392 KB
testcase_14 AC 60 ms
71,040 KB
testcase_15 AC 119 ms
81,216 KB
testcase_16 AC 48 ms
61,696 KB
testcase_17 AC 140 ms
82,632 KB
testcase_18 AC 57 ms
67,328 KB
testcase_19 AC 72 ms
76,416 KB
testcase_20 AC 65 ms
70,528 KB
testcase_21 AC 135 ms
82,236 KB
testcase_22 AC 61 ms
70,912 KB
testcase_23 AC 62 ms
67,200 KB
testcase_24 AC 76 ms
76,416 KB
testcase_25 AC 79 ms
77,184 KB
testcase_26 AC 71 ms
76,672 KB
testcase_27 AC 86 ms
77,384 KB
testcase_28 AC 110 ms
79,840 KB
testcase_29 AC 79 ms
77,056 KB
testcase_30 AC 96 ms
78,592 KB
testcase_31 AC 126 ms
81,024 KB
testcase_32 AC 157 ms
85,004 KB
testcase_33 AC 160 ms
84,864 KB
testcase_34 AC 165 ms
84,984 KB
testcase_35 AC 164 ms
84,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

print("Yes")
for a in ans:
    print(*a)
0