結果

問題 No.1974 2x2 Flipper
ユーザー tamatotamato
提出日時 2022-06-10 22:10:19
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 722 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 86,528 KB
最終ジャッジ日時 2024-09-21 06:25:16
合計ジャッジ時間 5,919 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,224 KB
testcase_01 AC 77 ms
76,288 KB
testcase_02 AC 55 ms
62,080 KB
testcase_03 AC 146 ms
82,192 KB
testcase_04 AC 100 ms
78,948 KB
testcase_05 RE -
testcase_06 AC 117 ms
80,124 KB
testcase_07 AC 85 ms
78,976 KB
testcase_08 AC 55 ms
73,472 KB
testcase_09 AC 101 ms
80,360 KB
testcase_10 RE -
testcase_11 AC 90 ms
79,232 KB
testcase_12 AC 117 ms
82,176 KB
testcase_13 AC 91 ms
79,488 KB
testcase_14 AC 76 ms
77,952 KB
testcase_15 AC 125 ms
84,056 KB
testcase_16 RE -
testcase_17 AC 106 ms
81,048 KB
testcase_18 AC 56 ms
72,704 KB
testcase_19 AC 73 ms
76,288 KB
testcase_20 AC 101 ms
78,532 KB
testcase_21 AC 190 ms
85,828 KB
testcase_22 AC 191 ms
86,528 KB
testcase_23 AC 190 ms
85,760 KB
testcase_24 RE -
testcase_25 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline

    H, W = map(int, input().split())
    H2 = H % 2
    W2 = W % 2
    if H2 == W2 == 0:
        print(H * W)
        ans = [[1] * W for _ in range(H)]
        for h in range(H):
            print(*ans[h])
    elif H2 == W2 == 1:
        assert False
    elif H2 == 1:
        print((H - 1) * W)
        ans = [[1] * W for _ in range(H)]
        ans[-1] = [0] * W
        for h in range(H):
            print(*ans[h])
    else:
        print(H * (W - 1))
        ans = [[1] * W for _ in range(H)]
        for h in range(H):
            ans[h][-1] = 0
        for h in range(H):
            print(*ans[h])


if __name__ == '__main__':
    main()
0