結果

問題 No.1974 2x2 Flipper
ユーザー ああいいああいい
提出日時 2022-06-12 07:34:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 863 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,972 KB
実行使用メモリ 86,272 KB
最終ジャッジ日時 2024-09-22 17:24:04
合計ジャッジ時間 5,508 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 64 ms
77,156 KB
testcase_02 AC 50 ms
63,744 KB
testcase_03 AC 111 ms
82,640 KB
testcase_04 AC 87 ms
78,872 KB
testcase_05 AC 70 ms
78,080 KB
testcase_06 AC 93 ms
80,436 KB
testcase_07 AC 84 ms
79,240 KB
testcase_08 AC 60 ms
76,800 KB
testcase_09 AC 98 ms
81,060 KB
testcase_10 AC 59 ms
74,684 KB
testcase_11 AC 87 ms
79,644 KB
testcase_12 AC 109 ms
82,936 KB
testcase_13 AC 89 ms
80,112 KB
testcase_14 AC 76 ms
78,080 KB
testcase_15 AC 127 ms
83,812 KB
testcase_16 AC 62 ms
76,656 KB
testcase_17 AC 109 ms
81,536 KB
testcase_18 AC 54 ms
73,996 KB
testcase_19 AC 63 ms
76,788 KB
testcase_20 AC 80 ms
79,084 KB
testcase_21 AC 145 ms
86,272 KB
testcase_22 AC 147 ms
85,976 KB
testcase_23 AC 147 ms
86,244 KB
testcase_24 AC 145 ms
86,004 KB
testcase_25 AC 36 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int,input().split())

import sys
if H == 1 or W == 1:
    print(0)
    for h in range(H):
        for w in range(W):
            print(0,end = " ")
        print()
    exit()
ans = [[0] * W for _ in range(H)]
A = ans
if W % 2 == 1:
    wend = W - 1
else:
    wend = W
if H % 2 == 1:
    hend = H - 1
else:
    hend = H
if H % 2 == 0 or W % 2 == 0:
    for h in range(hend):
        for w in range(wend):
            A[h][w] = 1
    print(hend * wend)
    for h in range(H):
        print(*A[h])
    exit()
else:
    for h in range(H):
        for w in range(W):
            A[h][w] = 1
    m = min(H,W)
    for i in range(m):
        A[i][i] = 0
    if W > m:
        for i in range(m,W):
            A[0][i] = 0
    if H > m:
        for i in range(m,H):
            A[i][0] = 0
    print(H * W - max(H,W))
    for h in range(H):
        print(*A[h])

0