結果

問題 No.1974 2x2 Flipper
ユーザー H20H20
提出日時 2022-06-10 22:16:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 354 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 86,144 KB
最終ジャッジ日時 2024-09-21 06:28:21
合計ジャッジ時間 5,633 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,096 KB
testcase_01 AC 71 ms
76,436 KB
testcase_02 AC 49 ms
62,848 KB
testcase_03 AC 120 ms
82,560 KB
testcase_04 AC 98 ms
78,848 KB
testcase_05 WA -
testcase_06 AC 103 ms
80,484 KB
testcase_07 AC 85 ms
78,848 KB
testcase_08 AC 59 ms
74,112 KB
testcase_09 AC 101 ms
80,152 KB
testcase_10 WA -
testcase_11 AC 89 ms
79,232 KB
testcase_12 AC 119 ms
82,048 KB
testcase_13 AC 96 ms
79,872 KB
testcase_14 AC 77 ms
77,960 KB
testcase_15 AC 126 ms
83,356 KB
testcase_16 WA -
testcase_17 AC 112 ms
81,024 KB
testcase_18 AC 56 ms
73,308 KB
testcase_19 AC 64 ms
76,800 KB
testcase_20 AC 86 ms
78,428 KB
testcase_21 AC 149 ms
85,504 KB
testcase_22 AC 158 ms
85,740 KB
testcase_23 AC 150 ms
85,872 KB
testcase_24 WA -
testcase_25 AC 37 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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