結果

問題 No.1765 While Shining
ユーザー Nishin-0141Nishin-0141
提出日時 2022-01-30 18:29:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 15,888 KB
最終ジャッジ日時 2024-06-11 08:23:17
合計ジャッジ時間 4,641 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 131 ms
13,872 KB
testcase_10 AC 182 ms
15,128 KB
testcase_11 AC 166 ms
14,832 KB
testcase_12 AC 172 ms
14,804 KB
testcase_13 AC 176 ms
14,800 KB
testcase_14 AC 213 ms
15,756 KB
testcase_15 AC 205 ms
15,760 KB
testcase_16 AC 196 ms
15,760 KB
testcase_17 AC 201 ms
15,760 KB
testcase_18 AC 212 ms
15,760 KB
testcase_19 AC 198 ms
15,760 KB
testcase_20 AC 197 ms
15,888 KB
testcase_21 AC 207 ms
15,756 KB
testcase_22 AC 201 ms
15,884 KB
testcase_23 AC 200 ms
15,760 KB
testcase_24 AC 201 ms
15,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))

a_reverse = a[::-1]
check = [True]*n
cnt = 0
ans = 0
for i in range(n-1):
    if a_reverse[i] != a_reverse[i + 1]:
        cnt += 1
        check[i + 1] = check[i]
    else:
        cnt = 0
        check[i + 1] = False
    if a_reverse[i + 1]:
        ans += cnt

for i in range(1, n):
    if a_reverse[i] and not check[i]:
        ans += 1

print(ans)
0