結果

問題 No.2053 12345...
ユーザー ああいいああいい
提出日時 2022-08-21 17:15:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 606 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 104,864 KB
最終ジャッジ日時 2024-10-10 06:16:42
合計ジャッジ時間 3,347 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,208 KB
testcase_01 AC 35 ms
53,428 KB
testcase_02 AC 41 ms
60,732 KB
testcase_03 AC 52 ms
69,568 KB
testcase_04 AC 72 ms
94,544 KB
testcase_05 AC 47 ms
68,112 KB
testcase_06 AC 69 ms
91,428 KB
testcase_07 AC 60 ms
82,136 KB
testcase_08 AC 59 ms
79,292 KB
testcase_09 AC 73 ms
95,028 KB
testcase_10 AC 86 ms
104,864 KB
testcase_11 AC 49 ms
67,576 KB
testcase_12 AC 47 ms
65,892 KB
testcase_13 AC 95 ms
104,040 KB
testcase_14 AC 58 ms
77,128 KB
testcase_15 AC 63 ms
77,912 KB
testcase_16 AC 57 ms
73,840 KB
testcase_17 AC 52 ms
69,880 KB
testcase_18 AC 103 ms
101,460 KB
testcase_19 AC 77 ms
96,248 KB
testcase_20 AC 51 ms
66,516 KB
testcase_21 AC 68 ms
84,364 KB
testcase_22 AC 39 ms
59,496 KB
testcase_23 AC 43 ms
64,324 KB
testcase_24 AC 50 ms
71,824 KB
testcase_25 AC 79 ms
101,964 KB
testcase_26 AC 58 ms
81,572 KB
testcase_27 AC 49 ms
70,616 KB
testcase_28 AC 47 ms
68,056 KB
testcase_29 AC 64 ms
86,960 KB
testcase_30 AC 48 ms
69,756 KB
testcase_31 AC 64 ms
86,456 KB
testcase_32 AC 94 ms
101,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))

ans = 0
left = 0
while left < N:
    right = left + 1
    if right < N and A[left] + 1 == A[right]:
        right += 1
        while right < N and A[right-1] + 1 == A[right]:
            right += 1
        tmp = right - left
        ans += tmp * (tmp - 1) // 2
        left = right
    elif right < N and A[left] - 1 == A[right]:
        right += 1
        while right < N and A[right - 1] - 1 == A[right]:
            right += 1
        tmp = right - left
        ans += tmp * (tmp - 1) // 2
        left = right
    else:
        left += 1
print(ans)
0