結果

問題 No.1974 2x2 Flipper
ユーザー 👑 KazunKazun
提出日時 2022-06-10 22:19:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 1,061 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 86,436 KB
最終ジャッジ日時 2024-09-21 07:07:45
合計ジャッジ時間 5,315 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 67 ms
77,312 KB
testcase_02 AC 52 ms
63,744 KB
testcase_03 AC 118 ms
82,396 KB
testcase_04 AC 85 ms
78,464 KB
testcase_05 AC 79 ms
77,824 KB
testcase_06 AC 105 ms
80,512 KB
testcase_07 AC 96 ms
78,988 KB
testcase_08 AC 70 ms
76,928 KB
testcase_09 AC 108 ms
81,152 KB
testcase_10 AC 77 ms
76,288 KB
testcase_11 AC 98 ms
79,616 KB
testcase_12 AC 115 ms
81,920 KB
testcase_13 AC 97 ms
79,360 KB
testcase_14 AC 79 ms
77,568 KB
testcase_15 AC 126 ms
83,328 KB
testcase_16 AC 65 ms
75,904 KB
testcase_17 AC 110 ms
81,252 KB
testcase_18 AC 54 ms
73,856 KB
testcase_19 AC 73 ms
76,812 KB
testcase_20 AC 89 ms
78,848 KB
testcase_21 AC 143 ms
86,400 KB
testcase_22 AC 141 ms
85,632 KB
testcase_23 AC 146 ms
86,144 KB
testcase_24 AC 150 ms
86,436 KB
testcase_25 AC 37 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(H,W):
    A=[[0]*W for _ in range(H)]

    if H==1 or W==1:
        pass
    elif H%2==0:
        if W%2==0:
            for i in range(H):
                a=A[i]
                for j in range(W):
                    a[j]=1
        else:
            for i in range(H):
                a=A[i]
                for j in range(W-1):
                    a[j]=1
    else:
        if W%2==0:
            for i in range(H-1):
                a=A[i]
                for j in range(W):
                    a[j]=1
        else:
            if H>W:
                flag=1
                H,W=W,H
                A=[list(a[::-1]) for a in zip(*A)]
            else:
                flag=0

            for i in range(H):
                for j in range(W):
                    if not((i==j) or ((i==H-1) and (j>=H))):
                        A[i][j]=1

            if flag:
                A=[list(a[::-1]) for a in zip(*A)]

    X=0
    for a in A:
        X+=sum(a)
    return X,A

H,W=map(int,input().split())
X,A=solve(H,W)

print(X)
for a in A:
    print(*a)
0