結果

問題 No.1765 While Shining
ユーザー ThetaTheta
提出日時 2022-10-24 19:32:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 711 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,784 KB
最終ジャッジ日時 2024-07-02 22:36:41
合計ジャッジ時間 4,970 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 33 ms
10,752 KB
testcase_08 AC 33 ms
10,752 KB
testcase_09 AC 137 ms
13,272 KB
testcase_10 AC 180 ms
14,012 KB
testcase_11 AC 161 ms
14,100 KB
testcase_12 AC 173 ms
13,812 KB
testcase_13 AC 161 ms
13,896 KB
testcase_14 AC 188 ms
14,776 KB
testcase_15 AC 185 ms
14,648 KB
testcase_16 AC 185 ms
14,692 KB
testcase_17 AC 184 ms
14,720 KB
testcase_18 AC 187 ms
14,776 KB
testcase_19 AC 187 ms
14,684 KB
testcase_20 AC 185 ms
14,648 KB
testcase_21 AC 184 ms
14,772 KB
testcase_22 AC 184 ms
14,772 KB
testcase_23 AC 184 ms
14,784 KB
testcase_24 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

class Board:
    def __init__(self, board: list[int]) -> None:
        self.board = board

    def calc_move_times(self, mass: int, is_shine: bool) -> int:
        if mass == len(self.board) - 1:
            return 0

        if not is_shine:
            return 0

        if self.board[mass] == is_shine:
            return 1 + self.calc_move_times(mass+1, not self.board[mass+1])
        else:
            return 1 + self.calc_move_times(mass+1, self.board[mass+1])


def main():
    N = int(input())
    A = list(map(int, input().split()))
    board = Board(A)
    print(sum(map(lambda arg: board.calc_move_times(arg[0], arg[1]),
                  zip(range(N), A))))


if __name__ == "__main__":
    main()
0