結果

問題 No.2053 12345...
ユーザー DrDrpilotDrDrpilot
提出日時 2022-08-23 17:52:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 99,608 KB
最終ジャッジ日時 2024-10-11 01:39:31
合計ジャッジ時間 3,938 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,332 KB
testcase_01 AC 43 ms
53,456 KB
testcase_02 AC 51 ms
62,636 KB
testcase_03 AC 59 ms
74,720 KB
testcase_04 AC 92 ms
97,840 KB
testcase_05 AC 59 ms
71,944 KB
testcase_06 AC 88 ms
95,664 KB
testcase_07 AC 80 ms
89,656 KB
testcase_08 AC 78 ms
87,436 KB
testcase_09 AC 90 ms
98,172 KB
testcase_10 AC 106 ms
99,564 KB
testcase_11 AC 58 ms
70,956 KB
testcase_12 AC 62 ms
71,212 KB
testcase_13 AC 114 ms
98,880 KB
testcase_14 AC 73 ms
81,896 KB
testcase_15 AC 68 ms
78,624 KB
testcase_16 AC 69 ms
78,836 KB
testcase_17 AC 65 ms
75,084 KB
testcase_18 AC 118 ms
99,532 KB
testcase_19 AC 94 ms
98,324 KB
testcase_20 AC 55 ms
67,116 KB
testcase_21 AC 85 ms
88,716 KB
testcase_22 AC 48 ms
61,292 KB
testcase_23 AC 55 ms
67,536 KB
testcase_24 AC 61 ms
77,084 KB
testcase_25 AC 101 ms
99,116 KB
testcase_26 AC 72 ms
85,804 KB
testcase_27 AC 62 ms
76,120 KB
testcase_28 AC 59 ms
73,236 KB
testcase_29 AC 85 ms
94,436 KB
testcase_30 AC 60 ms
74,224 KB
testcase_31 AC 88 ms
94,592 KB
testcase_32 AC 111 ms
99,608 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()
        q.append(i)
ans+=len(q)*(len(q)-1)//2
print(ans)
0