結果

問題 No.2053 12345...
ユーザー ecotteaecottea
提出日時 2024-02-26 22:37:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 215 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 32,532 KB
最終ジャッジ日時 2024-09-29 11:46:31
合計ジャッジ時間 4,157 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,496 KB
testcase_01 AC 24 ms
10,496 KB
testcase_02 AC 25 ms
11,008 KB
testcase_03 AC 48 ms
15,584 KB
testcase_04 AC 112 ms
25,368 KB
testcase_05 AC 44 ms
13,700 KB
testcase_06 AC 96 ms
23,692 KB
testcase_07 AC 72 ms
19,800 KB
testcase_08 AC 66 ms
19,060 KB
testcase_09 AC 101 ms
25,440 KB
testcase_10 AC 129 ms
31,196 KB
testcase_11 AC 41 ms
13,520 KB
testcase_12 AC 36 ms
12,672 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 50 ms
16,284 KB
testcase_18 WA -
testcase_19 AC 105 ms
25,992 KB
testcase_20 AC 33 ms
12,416 KB
testcase_21 WA -
testcase_22 AC 26 ms
10,880 KB
testcase_23 AC 36 ms
12,972 KB
testcase_24 AC 52 ms
16,080 KB
testcase_25 AC 126 ms
29,980 KB
testcase_26 AC 70 ms
19,852 KB
testcase_27 AC 52 ms
16,072 KB
testcase_28 AC 46 ms
14,760 KB
testcase_29 AC 89 ms
23,268 KB
testcase_30 AC 49 ms
15,352 KB
testcase_31 AC 86 ms
22,612 KB
testcase_32 AC 140 ms
32,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

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

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

hist = Counter(a)

res = 0

for x, c in hist.items():
    res += c * (c - 1) // 2

print(res)
0