結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 86 ms
12,544 KB
testcase_02 AC 37 ms
11,008 KB
testcase_03 AC 386 ms
21,376 KB
testcase_04 AC 246 ms
13,440 KB
testcase_05 WA -
testcase_06 AC 276 ms
18,048 KB
testcase_07 AC 239 ms
13,312 KB
testcase_08 AC 68 ms
11,392 KB
testcase_09 AC 379 ms
14,720 KB
testcase_10 WA -
testcase_11 AC 300 ms
13,824 KB
testcase_12 AC 499 ms
16,256 KB
testcase_13 AC 307 ms
14,080 KB
testcase_14 AC 198 ms
12,800 KB
testcase_15 AC 580 ms
16,896 KB
testcase_16 WA -
testcase_17 AC 318 ms
19,328 KB
testcase_18 AC 71 ms
11,264 KB
testcase_19 AC 72 ms
11,392 KB
testcase_20 AC 239 ms
13,312 KB
testcase_21 AC 557 ms
26,624 KB
testcase_22 AC 757 ms
18,816 KB
testcase_23 AC 735 ms
18,816 KB
testcase_24 WA -
testcase_25 AC 31 ms
10,880 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:
    ans = H * W
    G = [[1] * W for _ in range(H)]
elif H % 2 == 0:
    ans = 0
    for i in range(H):
        for j in range(W-1):
            G[i][j] = 1
            ans += 1
elif W % 2 == 0:
    ans = 0
    for i in range(H-1):
        for j in range(W):
            G[i][j] = 1
            ans += 1
else:
    ans = 3
    for i in range(H-1):
        for j in range(W-1):
            ans += 1
            G[i][j] = 1
    G[-1][-1] = 1
    G[-2][-1] = 1
    G[-1][-2] = 1
    G[-2][-2] = 0


print(ans)
for g in G:
    print(*g)
0