結果

問題 No.1765 While Shining
ユーザー brthyyjpbrthyyjp
提出日時 2021-12-14 17:57:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 119,248 KB
最終ジャッジ日時 2024-07-23 19:39:09
合計ジャッジ時間 3,681 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,816 KB
testcase_01 AC 38 ms
51,812 KB
testcase_02 AC 38 ms
52,692 KB
testcase_03 AC 39 ms
52,700 KB
testcase_04 AC 39 ms
52,952 KB
testcase_05 AC 39 ms
53,744 KB
testcase_06 AC 38 ms
53,124 KB
testcase_07 AC 38 ms
53,628 KB
testcase_08 AC 40 ms
53,908 KB
testcase_09 AC 84 ms
98,272 KB
testcase_10 AC 102 ms
118,792 KB
testcase_11 AC 94 ms
109,304 KB
testcase_12 AC 97 ms
113,356 KB
testcase_13 AC 88 ms
107,536 KB
testcase_14 AC 103 ms
119,248 KB
testcase_15 AC 104 ms
118,816 KB
testcase_16 AC 104 ms
118,752 KB
testcase_17 AC 103 ms
118,948 KB
testcase_18 AC 103 ms
118,896 KB
testcase_19 AC 102 ms
118,756 KB
testcase_20 AC 104 ms
118,884 KB
testcase_21 AC 103 ms
118,848 KB
testcase_22 AC 104 ms
119,168 KB
testcase_23 AC 104 ms
118,572 KB
testcase_24 AC 97 ms
118,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))

B = []
for i, a in enumerate(A):
    if i%2 == 1:
        B.append(1-a)
    else:
        B.append(a)

pre = n
cur = -1
C = [0]*n
for i in reversed(range(n)):
    if B[i] != cur:
        pre = i
        cur = B[i]
    C[i] = pre+1

ans = 0
for i, a in enumerate(A):
    if a:
        ans += min(C[i], n-1)-i
print(ans)
0