結果

問題 No.2053 12345...
ユーザー ecotteaecottea
提出日時 2024-02-26 22:40:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,548 KB
最終ジャッジ日時 2024-09-29 11:46:35
合計ジャッジ時間 4,397 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
11,008 KB
testcase_03 AC 56 ms
15,472 KB
testcase_04 AC 113 ms
25,380 KB
testcase_05 AC 47 ms
13,716 KB
testcase_06 AC 106 ms
24,060 KB
testcase_07 AC 83 ms
19,816 KB
testcase_08 AC 79 ms
19,268 KB
testcase_09 AC 115 ms
25,580 KB
testcase_10 AC 144 ms
31,076 KB
testcase_11 AC 46 ms
13,528 KB
testcase_12 AC 43 ms
12,160 KB
testcase_13 AC 175 ms
30,352 KB
testcase_14 AC 82 ms
16,660 KB
testcase_15 AC 65 ms
15,984 KB
testcase_16 AC 69 ms
15,500 KB
testcase_17 AC 58 ms
13,988 KB
testcase_18 AC 185 ms
32,148 KB
testcase_19 AC 124 ms
26,212 KB
testcase_20 AC 40 ms
12,032 KB
testcase_21 AC 102 ms
19,740 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 42 ms
12,856 KB
testcase_24 AC 60 ms
16,092 KB
testcase_25 AC 142 ms
30,120 KB
testcase_26 AC 82 ms
19,992 KB
testcase_27 AC 59 ms
16,084 KB
testcase_28 AC 53 ms
14,904 KB
testcase_29 AC 103 ms
23,272 KB
testcase_30 AC 57 ms
15,364 KB
testcase_31 AC 98 ms
22,832 KB
testcase_32 AC 154 ms
32,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for i in range(n):
    a[i] -= i
a.append(12345678987654321)

res = 0

p = -1
l = -1
for i in range(n + 1):
    if a[i] == p:
        None
    else:
        w = i - l
        res += w * (w - 1) // 2
        p = a[i]
        l = i

print(res)
0