結果

問題 No.1974 2x2 Flipper
ユーザー lloyzlloyz
提出日時 2022-06-11 00:26:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 577 ms / 2,000 ms
コード長 919 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 19,712 KB
最終ジャッジ日時 2024-09-21 07:36:02
合計ジャッジ時間 9,051 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 87 ms
11,776 KB
testcase_02 AC 35 ms
11,264 KB
testcase_03 AC 391 ms
16,896 KB
testcase_04 AC 189 ms
13,696 KB
testcase_05 AC 122 ms
12,544 KB
testcase_06 AC 282 ms
14,848 KB
testcase_07 AC 192 ms
13,568 KB
testcase_08 AC 59 ms
11,520 KB
testcase_09 AC 300 ms
15,232 KB
testcase_10 AC 59 ms
11,648 KB
testcase_11 AC 231 ms
14,464 KB
testcase_12 AC 385 ms
16,640 KB
testcase_13 AC 240 ms
14,336 KB
testcase_14 AC 156 ms
13,056 KB
testcase_15 AC 443 ms
17,280 KB
testcase_16 AC 62 ms
11,520 KB
testcase_17 AC 324 ms
15,616 KB
testcase_18 AC 62 ms
11,392 KB
testcase_19 AC 63 ms
11,520 KB
testcase_20 AC 189 ms
13,440 KB
testcase_21 AC 577 ms
19,712 KB
testcase_22 AC 575 ms
19,712 KB
testcase_23 AC 567 ms
19,712 KB
testcase_24 AC 574 ms
19,712 KB
testcase_25 AC 31 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())

if h == 1 and w == 1:
    print(0)
    print(0)
    exit()
if h == 1:
    ANS = [0 for _ in range(w)]
    print(0)
    print(*ANS)
    exit()
if w == 1:
    print(0)
    for i in range(h):
        print(0)
    exit()

ans = 0
ANS = [[1 for _ in range(w)] for _ in range(h)]
if h % 2 == 0 and w % 2 == 0:
    ans += h * w
elif h % 2 == 1 and w % 2 == 0:
    ans += w * (h - 1)
    for i in range(w):
        ANS[-1][i] = 0
elif h % 2 == 0 and w % 2 == 1:
    ans += (w - 1) * h
    for i in range(h):
        ANS[i][-1] = 0
else:
    if h <= w:
        ans += (h - 1) * w
        for i in range(h):
            ANS[h - i - 1][i] = 0
        for i in range(h, w):
            ANS[0][i] = 0
    else:
        ans += h * (w - 1)
        for i in range(w):
            ANS[w - i - 1][i] = 0
        for i in range(w, h):
            ANS[i][0] = 0
print(ans)
for ele in ANS:
    print(*ele)
0