結果

問題 No.1974 2x2 Flipper
ユーザー 👑 KazunKazun
提出日時 2022-06-10 22:06:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 854 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 86,236 KB
最終ジャッジ日時 2024-09-21 06:20:48
合計ジャッジ時間 5,416 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,676 KB
testcase_01 AC 71 ms
76,568 KB
testcase_02 AC 50 ms
62,976 KB
testcase_03 AC 121 ms
82,304 KB
testcase_04 AC 87 ms
78,592 KB
testcase_05 WA -
testcase_06 AC 103 ms
80,524 KB
testcase_07 AC 86 ms
78,468 KB
testcase_08 AC 64 ms
76,800 KB
testcase_09 AC 103 ms
80,384 KB
testcase_10 WA -
testcase_11 AC 94 ms
79,932 KB
testcase_12 AC 121 ms
81,792 KB
testcase_13 AC 100 ms
79,968 KB
testcase_14 AC 80 ms
77,696 KB
testcase_15 AC 123 ms
83,200 KB
testcase_16 WA -
testcase_17 AC 113 ms
81,276 KB
testcase_18 AC 55 ms
73,600 KB
testcase_19 AC 67 ms
76,352 KB
testcase_20 AC 90 ms
79,104 KB
testcase_21 AC 138 ms
85,844 KB
testcase_22 AC 141 ms
86,016 KB
testcase_23 AC 145 ms
85,632 KB
testcase_24 WA -
testcase_25 AC 38 ms
52,352 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:
            for i in range(H-1):
                a=A[i]
                for j in range(W-1):
                    a[j]=1
            A[-2][-2]=0
            A[-2][-1]=A[-1][-2]=A[-1][-1]=1
    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