結果

問題 No.1765 While Shining
ユーザー 👑 rin204rin204
提出日時 2021-12-13 01:22:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 246 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 101,088 KB
最終ジャッジ日時 2024-07-21 14:57:18
合計ジャッジ時間 3,402 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,692 KB
testcase_01 AC 38 ms
52,628 KB
testcase_02 AC 38 ms
52,012 KB
testcase_03 AC 38 ms
52,824 KB
testcase_04 AC 38 ms
52,244 KB
testcase_05 AC 38 ms
53,728 KB
testcase_06 AC 38 ms
52,232 KB
testcase_07 AC 38 ms
53,216 KB
testcase_08 AC 39 ms
53,580 KB
testcase_09 AC 69 ms
85,808 KB
testcase_10 AC 82 ms
99,192 KB
testcase_11 AC 76 ms
93,032 KB
testcase_12 AC 79 ms
95,700 KB
testcase_13 AC 75 ms
92,956 KB
testcase_14 AC 83 ms
101,024 KB
testcase_15 AC 83 ms
100,416 KB
testcase_16 AC 83 ms
100,416 KB
testcase_17 AC 82 ms
100,664 KB
testcase_18 AC 84 ms
99,932 KB
testcase_19 AC 84 ms
99,500 KB
testcase_20 AC 83 ms
100,776 KB
testcase_21 AC 83 ms
100,096 KB
testcase_22 AC 83 ms
100,540 KB
testcase_23 AC 84 ms
101,088 KB
testcase_24 AC 78 ms
98,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
for i in range(1, n, 2):
    A[i] ^= 1
    
r = n - 2
ans = 0
for i in range(n - 2, -1, -1):
    if A[i] != A[i + 1]:
        r = i
    if i % 2 != A[i] % 2:
        ans += r - i + 1
print(ans)
0