Обновлено: 2024-03-12
1 мин

Содержание

class Solution:
    def flowerGame(self, n: int, m: int) -> int:
        return (n * m) // 2
Ранее
Далее