結果

問題 No.2053 12345...
ユーザー Taichi.NTaichi.N
提出日時 2022-10-04 15:32:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 604 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 104,368 KB
最終ジャッジ日時 2024-06-09 12:57:50
合計ジャッジ時間 4,020 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,212 KB
testcase_01 AC 30 ms
53,144 KB
testcase_02 AC 41 ms
61,028 KB
testcase_03 AC 50 ms
70,748 KB
testcase_04 AC 68 ms
93,324 KB
testcase_05 AC 43 ms
68,164 KB
testcase_06 AC 62 ms
90,032 KB
testcase_07 AC 57 ms
81,924 KB
testcase_08 AC 54 ms
79,220 KB
testcase_09 AC 66 ms
95,384 KB
testcase_10 AC 80 ms
104,340 KB
testcase_11 AC 42 ms
66,548 KB
testcase_12 AC 43 ms
65,932 KB
testcase_13 AC 82 ms
104,368 KB
testcase_14 AC 53 ms
76,520 KB
testcase_15 AC 49 ms
74,152 KB
testcase_16 AC 55 ms
75,184 KB
testcase_17 AC 50 ms
72,112 KB
testcase_18 AC 90 ms
101,628 KB
testcase_19 AC 67 ms
94,804 KB
testcase_20 AC 47 ms
66,252 KB
testcase_21 AC 60 ms
85,072 KB
testcase_22 AC 34 ms
59,460 KB
testcase_23 AC 38 ms
64,712 KB
testcase_24 AC 43 ms
72,232 KB
testcase_25 AC 71 ms
102,548 KB
testcase_26 AC 51 ms
80,828 KB
testcase_27 AC 45 ms
70,548 KB
testcase_28 AC 42 ms
69,156 KB
testcase_29 AC 57 ms
87,164 KB
testcase_30 AC 45 ms
71,240 KB
testcase_31 AC 59 ms
86,496 KB
testcase_32 AC 88 ms
102,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0
i, j = 0, 1

while i < n:
    k = 0
    while j < n:
        if A[j] - A[i] != j - i:
            break
        k += 1
        j += 1
    i = j
    j += 1
    ans += (k + 1) * k // 2

print(ans)
0