結果

問題 No.1765 While Shining
ユーザー KudeKude
提出日時 2021-11-26 22:36:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 498 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 107,776 KB
最終ジャッジ日時 2024-06-29 18:15:06
合計ジャッジ時間 2,835 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 37 ms
52,352 KB
testcase_05 AC 42 ms
57,984 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 36 ms
51,968 KB
testcase_08 AC 43 ms
59,520 KB
testcase_09 AC 79 ms
91,648 KB
testcase_10 AC 96 ms
106,496 KB
testcase_11 AC 88 ms
98,816 KB
testcase_12 AC 91 ms
103,168 KB
testcase_13 AC 86 ms
98,304 KB
testcase_14 AC 96 ms
107,264 KB
testcase_15 AC 95 ms
107,252 KB
testcase_16 AC 95 ms
107,520 KB
testcase_17 AC 95 ms
107,520 KB
testcase_18 AC 97 ms
107,008 KB
testcase_19 AC 95 ms
107,392 KB
testcase_20 AC 94 ms
107,008 KB
testcase_21 AC 99 ms
107,688 KB
testcase_22 AC 95 ms
107,648 KB
testcase_23 AC 95 ms
107,776 KB
testcase_24 AC 87 ms
105,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

b0 = a[:]
b1 = a[:]

for i in range(n):
    if i % 2 == 0:
        b0[i] ^= 1
    else:
        b1[i] ^= 1

nxt0 = [n - 1] * n
nxt1 = [n - 1] * n
for b, nxt in ((b0, nxt0), (b1, nxt1)):
    x = n - 1
    for i in range(n)[::-1]:
        nxt[i] = x
        if b[i] == 1:
            x = i

ans = 0
for i in range(n):
    if a[i] == 0:
        continue
    if i % 2 == 0:
        ans += nxt0[i] - i
    else:
        ans += nxt1[i] - i
print(ans)
0