結果

問題 No.2304 Distinct Elements
ユーザー 👑 rin204rin204
提出日時 2024-03-16 15:23:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 510 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 238,084 KB
最終ジャッジ日時 2024-09-30 04:02:37
合計ジャッジ時間 11,377 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,528 KB
testcase_01 AC 37 ms
53,268 KB
testcase_02 AC 38 ms
51,808 KB
testcase_03 AC 35 ms
52,764 KB
testcase_04 AC 198 ms
144,948 KB
testcase_05 AC 202 ms
145,184 KB
testcase_06 AC 198 ms
144,956 KB
testcase_07 AC 201 ms
144,656 KB
testcase_08 AC 201 ms
145,276 KB
testcase_09 AC 318 ms
238,032 KB
testcase_10 AC 307 ms
238,084 KB
testcase_11 AC 304 ms
237,452 KB
testcase_12 AC 307 ms
237,840 KB
testcase_13 AC 303 ms
238,028 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 35 ms
52,632 KB
testcase_20 WA -
testcase_21 AC 36 ms
53,048 KB
testcase_22 WA -
testcase_23 AC 35 ms
51,708 KB
testcase_24 AC 37 ms
52,956 KB
testcase_25 AC 38 ms
52,420 KB
testcase_26 AC 37 ms
53,840 KB
testcase_27 AC 36 ms
53,180 KB
testcase_28 AC 38 ms
53,356 KB
testcase_29 AC 150 ms
127,556 KB
testcase_30 AC 54 ms
70,984 KB
testcase_31 AC 127 ms
109,232 KB
testcase_32 AC 243 ms
179,984 KB
testcase_33 AC 58 ms
75,172 KB
testcase_34 AC 246 ms
180,384 KB
testcase_35 AC 284 ms
201,164 KB
testcase_36 AC 58 ms
72,096 KB
testcase_37 AC 104 ms
101,068 KB
testcase_38 AC 209 ms
142,128 KB
testcase_39 AC 208 ms
141,912 KB
testcase_40 AC 149 ms
114,460 KB
testcase_41 AC 103 ms
100,612 KB
testcase_42 AC 170 ms
132,724 KB
testcase_43 AC 191 ms
167,836 KB
testcase_44 AC 226 ms
167,192 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 37 ms
53,480 KB
testcase_48 AC 37 ms
54,112 KB
testcase_49 AC 196 ms
145,804 KB
testcase_50 AC 197 ms
146,448 KB
testcase_51 AC 197 ms
146,368 KB
testcase_52 WA -
testcase_53 AC 140 ms
107,704 KB
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 161 ms
111,520 KB
testcase_58 AC 177 ms
127,336 KB
testcase_59 AC 171 ms
119,796 KB
testcase_60 AC 39 ms
51,824 KB
testcase_61 AC 38 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
A.sort()
ans = [0] * n

cnt = {}
tot = 0
for i, a in enumerate(A):
    x = a - i
    cnt[x] = cnt.get(x, 0) + 1
    tot += cnt.get(x + 1, 0)
    cnt[x] += cnt.get(x + 1, 0)
    cnt[x + 1] = 0
    ans[i] += tot

A = [-a for a in A[::-1]]
ans = ans[::-1]

cnt = {}
tot = 0
for i, a in enumerate(A):
    x = a - i
    cnt[x] = cnt.get(x, 0) + 1
    tot += cnt.get(x + 1, 0)
    cnt[x] += cnt.get(x + 1, 0)
    cnt[x + 1] = 0
    ans[i] += tot

print(min(ans))
0