結果

問題 No.2053 12345...
ユーザー DrDrpilotDrDrpilot
提出日時 2022-08-23 18:18:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 99,992 KB
最終ジャッジ日時 2024-10-11 01:59:21
合計ジャッジ時間 4,191 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,888 KB
testcase_01 AC 40 ms
53,504 KB
testcase_02 AC 47 ms
61,696 KB
testcase_03 AC 58 ms
74,112 KB
testcase_04 AC 89 ms
98,432 KB
testcase_05 AC 58 ms
71,168 KB
testcase_06 AC 87 ms
95,360 KB
testcase_07 AC 76 ms
89,856 KB
testcase_08 AC 76 ms
87,812 KB
testcase_09 AC 87 ms
98,304 KB
testcase_10 AC 101 ms
99,328 KB
testcase_11 AC 55 ms
70,528 KB
testcase_12 AC 58 ms
69,632 KB
testcase_13 AC 108 ms
98,944 KB
testcase_14 AC 71 ms
81,792 KB
testcase_15 AC 66 ms
78,720 KB
testcase_16 AC 67 ms
77,824 KB
testcase_17 AC 64 ms
74,240 KB
testcase_18 AC 114 ms
99,968 KB
testcase_19 AC 91 ms
98,688 KB
testcase_20 AC 55 ms
66,688 KB
testcase_21 AC 82 ms
88,704 KB
testcase_22 AC 45 ms
61,312 KB
testcase_23 AC 53 ms
67,200 KB
testcase_24 AC 58 ms
75,392 KB
testcase_25 AC 98 ms
99,220 KB
testcase_26 AC 68 ms
86,392 KB
testcase_27 AC 58 ms
75,520 KB
testcase_28 AC 56 ms
72,832 KB
testcase_29 AC 82 ms
94,592 KB
testcase_30 AC 57 ms
73,856 KB
testcase_31 AC 79 ms
94,336 KB
testcase_32 AC 106 ms
99,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def I():return int(input())
def MAP():return map(int,input().split())
def LIST(): return list(map(int,input().split()))
def S():return input()
from collections import deque
n=I()
a=LIST()
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()
        q.append(i)
ans+=len(q)*(len(q)-1)//2
print(ans)
0