結果

問題 No.1974 2x2 Flipper
ユーザー 👑 rin204rin204
提出日時 2022-06-11 14:37:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 702 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 85,888 KB
最終ジャッジ日時 2024-09-22 01:24:34
合計ジャッジ時間 6,075 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 74 ms
76,816 KB
testcase_02 AC 52 ms
62,336 KB
testcase_03 AC 123 ms
81,860 KB
testcase_04 AC 90 ms
78,336 KB
testcase_05 AC 73 ms
77,556 KB
testcase_06 AC 102 ms
79,872 KB
testcase_07 AC 87 ms
79,104 KB
testcase_08 AC 57 ms
73,344 KB
testcase_09 AC 103 ms
80,008 KB
testcase_10 AC 60 ms
73,728 KB
testcase_11 AC 94 ms
79,392 KB
testcase_12 AC 120 ms
82,460 KB
testcase_13 AC 96 ms
79,872 KB
testcase_14 AC 82 ms
78,080 KB
testcase_15 AC 128 ms
83,476 KB
testcase_16 AC 60 ms
74,316 KB
testcase_17 AC 112 ms
81,116 KB
testcase_18 AC 57 ms
73,088 KB
testcase_19 AC 68 ms
76,280 KB
testcase_20 AC 84 ms
78,544 KB
testcase_21 AC 150 ms
85,576 KB
testcase_22 AC 155 ms
85,888 KB
testcase_23 AC 157 ms
85,888 KB
testcase_24 AC 154 ms
85,640 KB
testcase_25 AC 40 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(h, w):
    A = [[1] * w for _ in range(h)]
    if h == 1 or w == 1:
        A = [[0] * w for _ in range(h)]
        cnt = 0
    elif not h & 1 and not w & 1:
        cnt = h * w
    elif not h & 1:
        for i in range(h):
            A[i][0] = 0
        cnt = h * (w - 1)
    elif not w & 1:
        for j in range(w):
            A[0][j] = 0
        cnt = (h - 1) * w
    elif h >= w:
        for i in range(h):
            A[i][min(i, w - 1)] = 0
        cnt = h * (w - 1)
    else:
        for i in range(w):
            A[min(i, h - 1)][i] = 0
        cnt = (h - 1) * w
    return cnt, A


h, w = map(int, input().split())
cnt, A = solve(h, w)
print(cnt)
for row in A:
    print(*row)
0