結果

問題 No.1268 Fruit Rush 2
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2020-10-31 18:20:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 504 ms / 2,000 ms
コード長 497 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 45,372 KB
最終ジャッジ日時 2024-07-22 05:07:39
合計ジャッジ時間 9,576 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 29 ms
10,496 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 30 ms
10,496 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 AC 31 ms
10,624 KB
testcase_16 AC 326 ms
28,992 KB
testcase_17 AC 277 ms
27,760 KB
testcase_18 AC 290 ms
28,032 KB
testcase_19 AC 293 ms
27,576 KB
testcase_20 AC 284 ms
27,424 KB
testcase_21 AC 282 ms
27,700 KB
testcase_22 AC 338 ms
28,048 KB
testcase_23 AC 335 ms
28,052 KB
testcase_24 AC 293 ms
27,348 KB
testcase_25 AC 286 ms
27,888 KB
testcase_26 AC 382 ms
42,804 KB
testcase_27 AC 381 ms
42,100 KB
testcase_28 AC 384 ms
42,820 KB
testcase_29 AC 384 ms
42,168 KB
testcase_30 AC 382 ms
42,584 KB
testcase_31 AC 504 ms
41,616 KB
testcase_32 AC 503 ms
41,328 KB
testcase_33 AC 411 ms
45,308 KB
testcase_34 AC 324 ms
42,092 KB
testcase_35 AC 369 ms
45,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dic = {}
for i in range(n):
    dic[a[i]] = i

ans = n
used = [0]*n
for i in range(1,n):
    if used[i]:
        continue
    used[i] = 1
    if a[i] == a[i-1]+1:
        count = 1
        s = 1
        k = a[i]
        ans += 1
        while k+count*2 in dic:
            ans += s
            if k+count*2-1 in dic:
                s += 1
                ans += 1
            used[dic[k+count*2]] = 1
            count += 1
print(ans)
0