結果

問題 No.1974 2x2 Flipper
ユーザー H20H20
提出日時 2022-06-10 22:24:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 299 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 85,836 KB
最終ジャッジ日時 2024-09-21 06:31:50
合計ジャッジ時間 5,448 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,340 KB
testcase_01 AC 68 ms
77,480 KB
testcase_02 AC 48 ms
62,972 KB
testcase_03 AC 117 ms
82,780 KB
testcase_04 AC 84 ms
79,296 KB
testcase_05 WA -
testcase_06 AC 99 ms
80,096 KB
testcase_07 AC 85 ms
78,744 KB
testcase_08 AC 57 ms
74,288 KB
testcase_09 AC 101 ms
80,640 KB
testcase_10 WA -
testcase_11 AC 91 ms
78,976 KB
testcase_12 AC 117 ms
82,180 KB
testcase_13 AC 94 ms
79,700 KB
testcase_14 AC 80 ms
77,772 KB
testcase_15 AC 127 ms
83,284 KB
testcase_16 WA -
testcase_17 AC 109 ms
81,096 KB
testcase_18 AC 59 ms
72,968 KB
testcase_19 AC 71 ms
76,532 KB
testcase_20 AC 84 ms
78,752 KB
testcase_21 AC 145 ms
85,472 KB
testcase_22 AC 145 ms
85,672 KB
testcase_23 AC 147 ms
85,772 KB
testcase_24 WA -
testcase_25 AC 38 ms
52,796 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:
    MAP[H-1][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