結果

問題 No.1765 While Shining
ユーザー ああいいああいい
提出日時 2021-12-03 17:57:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,176 KB
最終ジャッジ日時 2024-07-05 21:22:03
合計ジャッジ時間 4,930 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 163 ms
13,112 KB
testcase_10 AC 225 ms
13,980 KB
testcase_11 AC 200 ms
13,812 KB
testcase_12 AC 216 ms
13,656 KB
testcase_13 AC 199 ms
13,736 KB
testcase_14 AC 237 ms
14,484 KB
testcase_15 AC 241 ms
14,616 KB
testcase_16 AC 238 ms
14,612 KB
testcase_17 AC 236 ms
14,740 KB
testcase_18 AC 234 ms
14,612 KB
testcase_19 AC 238 ms
14,488 KB
testcase_20 AC 234 ms
14,612 KB
testcase_21 AC 239 ms
14,616 KB
testcase_22 AC 237 ms
14,488 KB
testcase_23 AC 239 ms
14,740 KB
testcase_24 AC 187 ms
17,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

S = [0] * N
now = 0
end = 0
while now < N - 1:
    if A[now] == 0:
        S[now] = 0
        now += 1
        continue
    for i in range(now,N-1):
        if A[i+1] == A[i] or i == N-2:
            end = i+1
            break
    for i in range(now,end,2):
        S[i] = end - i
    now = end
sum = 0
for i in range(N):
    sum += S[i]
print(sum)
    
#多分ok
0