結果
問題 | No.1765 While Shining |
ユーザー | Theta |
提出日時 | 2022-10-24 19:38:08 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 300 ms / 2,000 ms |
コード長 | 782 bytes |
コンパイル時間 | 183 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 14,780 KB |
最終ジャッジ日時 | 2024-07-02 22:45:08 |
合計ジャッジ時間 | 6,128 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,880 KB |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | AC | 30 ms
10,880 KB |
testcase_03 | AC | 31 ms
10,752 KB |
testcase_04 | AC | 31 ms
10,752 KB |
testcase_05 | AC | 33 ms
10,752 KB |
testcase_06 | AC | 31 ms
10,752 KB |
testcase_07 | AC | 31 ms
10,752 KB |
testcase_08 | AC | 32 ms
10,752 KB |
testcase_09 | AC | 185 ms
13,408 KB |
testcase_10 | AC | 255 ms
14,016 KB |
testcase_11 | AC | 229 ms
13,984 KB |
testcase_12 | AC | 249 ms
13,692 KB |
testcase_13 | AC | 224 ms
14,028 KB |
testcase_14 | AC | 273 ms
14,604 KB |
testcase_15 | AC | 276 ms
14,780 KB |
testcase_16 | AC | 274 ms
14,776 KB |
testcase_17 | AC | 273 ms
14,648 KB |
testcase_18 | AC | 273 ms
14,648 KB |
testcase_19 | AC | 272 ms
14,780 KB |
testcase_20 | AC | 275 ms
14,780 KB |
testcase_21 | AC | 277 ms
14,776 KB |
testcase_22 | AC | 275 ms
14,776 KB |
testcase_23 | AC | 275 ms
14,652 KB |
testcase_24 | AC | 300 ms
14,704 KB |
ソースコード
from functools import lru_cache class Board: def __init__(self, board: list[int]) -> None: self.board = board @lru_cache 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(reversed(range(N)), reversed(A)))))) if __name__ == "__main__": main()