結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,624 KB
testcase_01 AC 62 ms
76,236 KB
testcase_02 AC 47 ms
62,720 KB
testcase_03 AC 102 ms
82,568 KB
testcase_04 AC 76 ms
78,720 KB
testcase_05 WA -
testcase_06 AC 89 ms
79,812 KB
testcase_07 AC 76 ms
79,100 KB
testcase_08 AC 54 ms
73,756 KB
testcase_09 AC 94 ms
80,432 KB
testcase_10 WA -
testcase_11 AC 82 ms
78,608 KB
testcase_12 AC 104 ms
82,360 KB
testcase_13 AC 89 ms
79,120 KB
testcase_14 AC 71 ms
78,084 KB
testcase_15 AC 116 ms
82,816 KB
testcase_16 WA -
testcase_17 AC 96 ms
81,152 KB
testcase_18 AC 50 ms
73,216 KB
testcase_19 AC 62 ms
76,280 KB
testcase_20 AC 76 ms
78,104 KB
testcase_21 AC 127 ms
85,484 KB
testcase_22 AC 127 ms
85,504 KB
testcase_23 AC 135 ms
85,180 KB
testcase_24 WA -
testcase_25 AC 36 ms
51,968 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[0][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