結果

問題 No.1765 While Shining
ユーザー first_vilfirst_vil
提出日時 2021-10-21 20:41:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,688 KB
最終ジャッジ日時 2024-06-29 17:45:40
合計ジャッジ時間 4,204 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 24 ms
10,624 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 25 ms
10,624 KB
testcase_07 AC 24 ms
10,624 KB
testcase_08 AC 24 ms
10,752 KB
testcase_09 AC 131 ms
17,616 KB
testcase_10 AC 191 ms
20,772 KB
testcase_11 AC 159 ms
19,568 KB
testcase_12 AC 174 ms
20,312 KB
testcase_13 AC 159 ms
19,408 KB
testcase_14 AC 194 ms
21,688 KB
testcase_15 AC 194 ms
21,432 KB
testcase_16 AC 198 ms
21,556 KB
testcase_17 AC 194 ms
21,376 KB
testcase_18 AC 193 ms
21,560 KB
testcase_19 AC 203 ms
21,556 KB
testcase_20 AC 205 ms
21,560 KB
testcase_21 AC 194 ms
21,432 KB
testcase_22 AC 193 ms
21,688 KB
testcase_23 AC 193 ms
21,556 KB
testcase_24 AC 189 ms
21,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
b = a[:]
for i in range(1,n,2):
    b[i] ^= 1
b.append(-1)
pre = n
c = [0]*n
for i in range(n-1,-1,-1):
    if b[i] != b[pre]:
        pre = i
    c[i] = pre + 1

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