結果

問題 No.1765 While Shining
ユーザー kohei2019kohei2019
提出日時 2023-06-22 22:15:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 133,072 KB
最終ジャッジ日時 2024-06-30 04:29:13
合計ジャッジ時間 3,100 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,312 KB
testcase_01 AC 32 ms
52,644 KB
testcase_02 AC 32 ms
52,496 KB
testcase_03 AC 32 ms
52,480 KB
testcase_04 AC 38 ms
52,064 KB
testcase_05 AC 36 ms
52,212 KB
testcase_06 AC 38 ms
52,944 KB
testcase_07 AC 37 ms
53,356 KB
testcase_08 AC 36 ms
52,948 KB
testcase_09 AC 78 ms
107,572 KB
testcase_10 AC 101 ms
131,572 KB
testcase_11 AC 85 ms
118,012 KB
testcase_12 AC 92 ms
124,824 KB
testcase_13 AC 87 ms
118,416 KB
testcase_14 AC 98 ms
132,344 KB
testcase_15 AC 97 ms
132,408 KB
testcase_16 AC 96 ms
132,056 KB
testcase_17 AC 104 ms
133,072 KB
testcase_18 AC 102 ms
132,384 KB
testcase_19 AC 101 ms
132,704 KB
testcase_20 AC 97 ms
132,504 KB
testcase_21 AC 97 ms
132,596 KB
testcase_22 AC 100 ms
132,248 KB
testcase_23 AC 97 ms
132,248 KB
testcase_24 AC 95 ms
131,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsA = list(map(int,input().split()))
lsA1 = []
lsA2 = []
for i in range(N):
    if i%2==0:
        lsA1.append(lsA[i])
        lsA2.append(lsA[i]^1)
    else:
        lsA1.append(lsA[i]^1)
        lsA2.append(lsA[i])

lsA1.append(0)
lsA2.append(0)
lsA1G = [0]*(N+1)
lsA2G = [0]*(N+1)
max1 = N-1
max2 = N-1
for i in range(N-1,-1,-1):
    if lsA1[i]==0:
        max1 = i
    if lsA2[i]==0:
        max2 = i
    lsA1G[i] = max1
    lsA2G[i] = max2
ans = 0
for i in range(N-1):
    if i%2==0:
        ans += lsA1G[i]-i
    else:
        ans += lsA2G[i]-i
print(ans)
0