結果

問題 No.1765 While Shining
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2021-11-27 17:45:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 610 bytes
コンパイル時間 619 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,048 KB
最終ジャッジ日時 2024-06-30 08:36:24
合計ジャッジ時間 4,702 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 120 ms
12,904 KB
testcase_10 AC 161 ms
14,008 KB
testcase_11 AC 145 ms
13,568 KB
testcase_12 AC 155 ms
13,808 KB
testcase_13 AC 143 ms
13,516 KB
testcase_14 AC 173 ms
13,916 KB
testcase_15 AC 172 ms
14,040 KB
testcase_16 AC 168 ms
14,012 KB
testcase_17 AC 171 ms
13,912 KB
testcase_18 AC 178 ms
14,048 KB
testcase_19 AC 170 ms
13,916 KB
testcase_20 AC 175 ms
13,908 KB
testcase_21 AC 169 ms
14,040 KB
testcase_22 AC 178 ms
14,040 KB
testcase_23 AC 171 ms
14,044 KB
testcase_24 AC 143 ms
14,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
L = 0
cand = []
flg = 0
for i in range(N):
    if A[i] == 1 and L == 0:
        st = i
        L += 1
        flg = 1
    elif A[i] == 0:
        if flg == 1:
            flg = 0
            L += 1
        else:
            cand.append(L)
            L = 0
    elif A[i] == 1 and flg == 0:
        L += 1
        flg = 1
    else:
        st = i
        cand.append(L)
        L = 1
        flg = 1
cand.append(L-1)
ans = 0
for i in cand:
    if i%2 == 1:
        ans += ((i+1)//2)**2
    else:
        m = i//2
        ans += m*(m+1)
print(ans)
#print(cand)
0