結果

問題 No.1765 While Shining
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-11-26 22:30:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 110,948 KB
最終ジャッジ日時 2024-06-29 18:11:52
合計ジャッジ時間 2,684 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,968 KB
testcase_01 AC 30 ms
53,032 KB
testcase_02 AC 33 ms
53,528 KB
testcase_03 AC 30 ms
53,212 KB
testcase_04 AC 30 ms
53,216 KB
testcase_05 AC 35 ms
59,652 KB
testcase_06 AC 31 ms
52,612 KB
testcase_07 AC 31 ms
52,072 KB
testcase_08 AC 35 ms
59,996 KB
testcase_09 AC 80 ms
101,752 KB
testcase_10 AC 93 ms
110,904 KB
testcase_11 AC 86 ms
105,516 KB
testcase_12 AC 88 ms
107,856 KB
testcase_13 AC 85 ms
105,764 KB
testcase_14 AC 92 ms
110,948 KB
testcase_15 AC 94 ms
110,552 KB
testcase_16 AC 92 ms
110,616 KB
testcase_17 AC 93 ms
110,684 KB
testcase_18 AC 92 ms
110,776 KB
testcase_19 AC 92 ms
110,596 KB
testcase_20 AC 93 ms
110,540 KB
testcase_21 AC 91 ms
110,892 KB
testcase_22 AC 93 ms
110,552 KB
testcase_23 AC 93 ms
110,692 KB
testcase_24 AC 90 ms
110,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

"""

import sys
from sys import stdin

N = int(stdin.readline())

A = list(map(int,stdin.readline().split()))

dp = [[0,0] for i in range(N)]

for i in range(N-2,-1,-1):

    for turn in range(2):

        now = A[i] ^ turn
        if now == 1:
            dp[i][turn] = dp[i+1][turn^1] + 1

ans = 0
for i in range(N):
    ans += dp[i][0]
print (ans)
0