結果

問題 No.1974 2x2 Flipper
ユーザー H20H20
提出日時 2022-06-10 22:44:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 85,888 KB
最終ジャッジ日時 2024-09-21 07:09:19
合計ジャッジ時間 4,994 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 66 ms
77,056 KB
testcase_02 AC 50 ms
62,976 KB
testcase_03 AC 117 ms
81,920 KB
testcase_04 AC 81 ms
78,848 KB
testcase_05 AC 71 ms
77,312 KB
testcase_06 AC 102 ms
79,872 KB
testcase_07 AC 86 ms
79,008 KB
testcase_08 AC 56 ms
73,728 KB
testcase_09 AC 99 ms
80,128 KB
testcase_10 AC 57 ms
73,984 KB
testcase_11 AC 88 ms
79,184 KB
testcase_12 AC 115 ms
81,920 KB
testcase_13 AC 92 ms
79,844 KB
testcase_14 AC 75 ms
77,568 KB
testcase_15 AC 123 ms
83,328 KB
testcase_16 AC 60 ms
76,672 KB
testcase_17 AC 107 ms
81,268 KB
testcase_18 AC 54 ms
73,216 KB
testcase_19 AC 64 ms
76,544 KB
testcase_20 AC 80 ms
78,208 KB
testcase_21 AC 148 ms
85,888 KB
testcase_22 AC 143 ms
85,120 KB
testcase_23 AC 146 ms
85,376 KB
testcase_24 AC 149 ms
85,120 KB
testcase_25 AC 37 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int, input().split())
MAP = [[1]*W for _ in range(H)]
if H>1 and W>1 and H%2==1 and W%2==1:
    for i in range(max(H,W)):
        MAP[min(i,H-1)][min(i,W-1)]=0
elif H%2==1:
    MAP[H-1]=[0]*W
elif W%2==1:
    for i in range(H):
        MAP[i][W-1]=0

ans = 0
for map in MAP:
    ans+=sum(map)

print(ans)
for map in MAP:
    print(*map)
0