結果

問題 No.1974 2x2 Flipper
ユーザー ああいいああいい
提出日時 2022-06-12 07:22:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 737 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 86,656 KB
最終ジャッジ日時 2024-09-22 17:13:43
合計ジャッジ時間 5,460 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,380 KB
testcase_01 AC 67 ms
77,056 KB
testcase_02 AC 50 ms
63,420 KB
testcase_03 AC 120 ms
82,660 KB
testcase_04 AC 82 ms
79,220 KB
testcase_05 WA -
testcase_06 AC 98 ms
80,548 KB
testcase_07 AC 85 ms
79,244 KB
testcase_08 AC 59 ms
74,852 KB
testcase_09 AC 95 ms
80,824 KB
testcase_10 WA -
testcase_11 AC 92 ms
79,512 KB
testcase_12 AC 116 ms
82,708 KB
testcase_13 AC 94 ms
79,768 KB
testcase_14 AC 79 ms
78,332 KB
testcase_15 AC 128 ms
83,752 KB
testcase_16 WA -
testcase_17 AC 109 ms
81,444 KB
testcase_18 AC 56 ms
73,612 KB
testcase_19 AC 64 ms
76,628 KB
testcase_20 AC 83 ms
78,780 KB
testcase_21 AC 148 ms
86,160 KB
testcase_22 AC 150 ms
86,036 KB
testcase_23 AC 153 ms
86,656 KB
testcase_24 WA -
testcase_25 AC 38 ms
52,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int,input().split())

import sys
if H == 1 or W == 1:
    print(0)
    for h in range(H):
        for w in range(W):
            print(0,end = " ")
        print()
    exit()
ans = [[0] * W for _ in range(H)]
A = ans
if W % 2 == 1:
    wend = W - 1
else:
    wend = W
if H % 2 == 1:
    hend = H - 1
else:
    hend = H
if H % 2 == 1 and W % 2 == 1:
    for h in range(H):
        for w in range(W):
            A[h][w] = 1
    for h in range(H - 1):
        A[h][-2] = 0
    for w in range(W - 1):
        A[-2][w] = 0
    print(H * W - H - W  + 2)
    for h in range(H):
        print(*A[h])
    exit()
for h in range(hend):
    for w in range(wend):
        A[h][w] = 1
print(wend * hend)
for h in range(H):
    print(*A[h])
0