結果

問題 No.2053 12345...
ユーザー DrDrpilotDrDrpilot
提出日時 2022-08-23 17:52:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 321 bytes
コンパイル時間 1,123 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 99,904 KB
最終ジャッジ日時 2024-10-11 01:38:54
合計ジャッジ時間 5,044 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,796 KB
testcase_01 AC 41 ms
53,632 KB
testcase_02 WA -
testcase_03 AC 58 ms
74,616 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
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 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 47 ms
61,264 KB
testcase_23 AC 52 ms
68,260 KB
testcase_24 AC 59 ms
76,096 KB
testcase_25 AC 96 ms
99,168 KB
testcase_26 AC 69 ms
86,428 KB
testcase_27 AC 58 ms
76,172 KB
testcase_28 AC 55 ms
72,936 KB
testcase_29 AC 79 ms
94,500 KB
testcase_30 AC 57 ms
75,524 KB
testcase_31 AC 79 ms
94,764 KB
testcase_32 AC 103 ms
99,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n=int(input())
a=list(map(int,input().split()))
q=deque()
ans=0
for i in a:
    if len(q)==0:
        q.append(i)
        continue
    if q[-1]+1==i:
        q.append(i)
    else:
        ans+=len(q)*(len(q)-1)//2
        while q:
            q.popleft()
ans+=len(q)*(len(q)-1)//2
print(ans)
0