結果

問題 No.1974 2x2 Flipper
ユーザー rlangevinrlangevin
提出日時 2022-08-22 19:44:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 373 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 86,184 KB
最終ジャッジ日時 2024-10-10 06:41:17
合計ジャッジ時間 6,520 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,700 KB
testcase_01 AC 84 ms
77,460 KB
testcase_02 AC 54 ms
66,808 KB
testcase_03 AC 138 ms
82,512 KB
testcase_04 AC 97 ms
78,948 KB
testcase_05 WA -
testcase_06 AC 120 ms
80,472 KB
testcase_07 AC 100 ms
79,300 KB
testcase_08 AC 69 ms
76,672 KB
testcase_09 AC 115 ms
81,184 KB
testcase_10 WA -
testcase_11 AC 103 ms
79,768 KB
testcase_12 AC 139 ms
82,516 KB
testcase_13 AC 106 ms
80,220 KB
testcase_14 AC 86 ms
78,380 KB
testcase_15 AC 147 ms
83,168 KB
testcase_16 WA -
testcase_17 AC 128 ms
81,376 KB
testcase_18 AC 65 ms
76,624 KB
testcase_19 AC 73 ms
76,780 KB
testcase_20 AC 92 ms
78,940 KB
testcase_21 AC 172 ms
85,808 KB
testcase_22 AC 171 ms
85,648 KB
testcase_23 AC 178 ms
85,988 KB
testcase_24 WA -
testcase_25 AC 38 ms
52,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
G = [[0] * W for i in range(H)]
ans = 0
for i in range(H - 1):
    for j in range(W - 1):
        if G[i][j] + G[i][j + 1] + G[i + 1][j] + G[i + 1][j + 1] == 0:
            ans += 4
            G[i][j] = 1
            G[i][j + 1] = 1
            G[i + 1][j] = 1
            G[i + 1][j + 1] = 1
print(ans)
for i in range(H):
    print(*G[i])
0