atcoder 競プロ典型90問 033 - Not Too Bright(★2)
2022.11.29
問題
方針
- hかwが1のときは、
完全に含まれる 縦 2 × 横 2 の、4 つの LED を含む領域
に該当しないので、全部点灯してもOK? - 2で割って、切り上げ
pythonimport math h, w = map(int, input().split()) if h == 1 or w == 1: ans = h * w else: ans = math.ceil(h / 2) * math.ceil(w / 2) print(ans)