結果

問題 No.1974 2x2 Flipper
ユーザー 👑 KazunKazun
提出日時 2022-06-10 22:07:18
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 875 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 85,888 KB
最終ジャッジ日時 2024-09-21 06:21:05
合計ジャッジ時間 5,381 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 70 ms
76,672 KB
testcase_02 AC 51 ms
63,104 KB
testcase_03 AC 122 ms
82,304 KB
testcase_04 AC 87 ms
78,592 KB
testcase_05 RE -
testcase_06 AC 102 ms
80,128 KB
testcase_07 AC 86 ms
78,720 KB
testcase_08 AC 64 ms
75,776 KB
testcase_09 AC 104 ms
80,000 KB
testcase_10 RE -
testcase_11 AC 95 ms
79,872 KB
testcase_12 AC 124 ms
82,144 KB
testcase_13 AC 100 ms
80,128 KB
testcase_14 AC 81 ms
78,080 KB
testcase_15 AC 126 ms
83,428 KB
testcase_16 RE -
testcase_17 AC 112 ms
81,340 KB
testcase_18 AC 60 ms
73,088 KB
testcase_19 AC 67 ms
76,800 KB
testcase_20 AC 85 ms
78,824 KB
testcase_21 AC 142 ms
85,760 KB
testcase_22 AC 146 ms
85,632 KB
testcase_23 AC 153 ms
85,888 KB
testcase_24 RE -
testcase_25 AC 39 ms
51,840 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:
            assert 0
            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