結果

問題 No.2956 Substitute with Average
ユーザー ArcAkiArcAki
提出日時 2024-11-09 03:09:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 563 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 85,376 KB
最終ジャッジ日時 2024-11-09 03:09:42
合計ジャッジ時間 3,410 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
61,440 KB
testcase_01 AC 58 ms
61,696 KB
testcase_02 AC 61 ms
61,440 KB
testcase_03 WA -
testcase_04 AC 58 ms
61,568 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 60 ms
61,568 KB
testcase_09 AC 59 ms
61,568 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 78 ms
81,536 KB
testcase_19 AC 84 ms
85,248 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 80 ms
82,432 KB
testcase_23 AC 78 ms
81,792 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
from random import randint
from collections import deque, defaultdict as dd
from copy import deepcopy
input = stdin.readline
MOD = 998244353
INF = 1 << 60
xor = randint(100, INF)


def main():
    n = int(input())
    a = list(map(int, input().split()))
    ans = n*(n+1)//2+1
    pre = a[0]
    cnt = 0
    for i in range(n):
        if pre==a[i]:
            cnt += 1
        else:
            ans -= cnt*(cnt+1)//2
            pre = a[i]
            cnt = 1
    ans -= cnt*(cnt+1)//2
    print(ans)


if __name__ == "__main__":
    main()
0