結果

問題 No.1765 While Shining
ユーザー roarisroaris
提出日時 2021-12-09 16:45:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 103,628 KB
最終ジャッジ日時 2024-07-17 09:30:39
合計ジャッジ時間 3,424 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,052 KB
testcase_01 AC 38 ms
53,320 KB
testcase_02 AC 36 ms
52,560 KB
testcase_03 AC 37 ms
52,160 KB
testcase_04 AC 37 ms
51,884 KB
testcase_05 AC 38 ms
53,012 KB
testcase_06 AC 38 ms
52,104 KB
testcase_07 AC 38 ms
53,040 KB
testcase_08 AC 41 ms
52,496 KB
testcase_09 AC 77 ms
90,040 KB
testcase_10 AC 93 ms
103,628 KB
testcase_11 AC 90 ms
97,320 KB
testcase_12 AC 93 ms
100,104 KB
testcase_13 AC 87 ms
97,064 KB
testcase_14 AC 96 ms
103,132 KB
testcase_15 AC 97 ms
103,488 KB
testcase_16 AC 95 ms
103,208 KB
testcase_17 AC 95 ms
103,332 KB
testcase_18 AC 97 ms
103,496 KB
testcase_19 AC 95 ms
103,308 KB
testcase_20 AC 96 ms
103,272 KB
testcase_21 AC 97 ms
103,164 KB
testcase_22 AC 95 ms
103,532 KB
testcase_23 AC 97 ms
103,312 KB
testcase_24 AC 77 ms
97,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
A = list(map(int, input().split()))
i = 0
ans = 0

while i<N:
    if A[i]==0:
        i += 1
    else:
        j = i
        
        while j<N:
            if ((j-i)%2==0 and A[j]==0) or ((j-i)%2==1 and A[j]==1):
                break
            j += 1
        
        l = j-i
        
        if j==N:
            l -= 1
        
        for k in range(l, -1, -2):
            ans += k

        i = j

print(ans)
0