結果

問題 No.1765 While Shining
ユーザー titiatitia
提出日時 2021-11-26 22:31:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 263 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,356 KB
最終ジャッジ日時 2024-06-29 18:12:10
合計ジャッジ時間 3,271 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 25 ms
10,496 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 100 ms
13,268 KB
testcase_10 AC 136 ms
13,884 KB
testcase_11 AC 119 ms
13,748 KB
testcase_12 AC 130 ms
13,688 KB
testcase_13 AC 115 ms
13,716 KB
testcase_14 AC 142 ms
14,596 KB
testcase_15 AC 142 ms
14,496 KB
testcase_16 AC 143 ms
14,492 KB
testcase_17 AC 150 ms
14,584 KB
testcase_18 AC 141 ms
14,620 KB
testcase_19 AC 155 ms
14,748 KB
testcase_20 AC 147 ms
14,496 KB
testcase_21 AC 151 ms
14,628 KB
testcase_22 AC 140 ms
14,520 KB
testcase_23 AC 141 ms
14,620 KB
testcase_24 AC 156 ms
20,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

S=[0]*N
for i in range(N-2,-1,-1):
    if A[i]==A[i+1]:
        S[i]=1
    else:
        S[i]=S[i+1]+1

ANS=0
for i in range(N):
    if A[i]==1:
        ANS+=S[i]

print(ANS)
0