結果

問題 No.1974 2x2 Flipper
ユーザー tktk_snsntktk_snsn
提出日時 2022-06-10 22:14:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 576 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,624 KB
最終ジャッジ日時 2024-09-21 06:27:23
合計ジャッジ時間 10,103 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 87 ms
12,416 KB
testcase_02 AC 36 ms
10,880 KB
testcase_03 AC 385 ms
21,248 KB
testcase_04 AC 216 ms
13,312 KB
testcase_05 WA -
testcase_06 AC 273 ms
18,048 KB
testcase_07 AC 221 ms
13,184 KB
testcase_08 AC 65 ms
11,392 KB
testcase_09 AC 337 ms
14,720 KB
testcase_10 WA -
testcase_11 AC 270 ms
13,824 KB
testcase_12 AC 444 ms
16,128 KB
testcase_13 AC 275 ms
13,952 KB
testcase_14 AC 179 ms
12,672 KB
testcase_15 AC 516 ms
16,896 KB
testcase_16 WA -
testcase_17 AC 324 ms
19,328 KB
testcase_18 AC 68 ms
11,264 KB
testcase_19 AC 68 ms
11,520 KB
testcase_20 AC 217 ms
13,312 KB
testcase_21 AC 563 ms
26,624 KB
testcase_22 AC 663 ms
18,816 KB
testcase_23 AC 671 ms
18,944 KB
testcase_24 WA -
testcase_25 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
G = [[0] * W for _ in range(H)]

if H == 1 or W == 1:
    ans = 0
elif H % 2 == 0 and W % 2 == 0:
    G = [[1] * W for _ in range(H)]
elif H % 2 == 0:
    for i in range(H):
        for j in range(W-1):
            G[i][j] = 1
elif W % 2 == 0:
    for i in range(H-1):
        for j in range(W):
            G[i][j] = 1
else:
    for i in range(H-1):
        for j in range(W-1):
            G[i][j] = 1
    G[-1][-1] = 1
    G[-2][-1] = 1
    G[-1][-2] = 1
    G[-2][-2] = 0


ans = sum(sum(d) for d in G)
print(ans)
for g in G:
    print(*g)
0