結果

問題 No.1268 Fruit Rush 2
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2020-10-31 18:04:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 465 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 138,928 KB
最終ジャッジ日時 2024-07-22 05:07:02
合計ジャッジ時間 5,504 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,140 KB
testcase_01 AC 38 ms
53,568 KB
testcase_02 AC 38 ms
53,096 KB
testcase_03 AC 39 ms
52,328 KB
testcase_04 AC 38 ms
52,616 KB
testcase_05 AC 38 ms
52,092 KB
testcase_06 AC 38 ms
52,488 KB
testcase_07 AC 37 ms
53,064 KB
testcase_08 AC 37 ms
52,876 KB
testcase_09 AC 38 ms
52,812 KB
testcase_10 AC 38 ms
53,012 KB
testcase_11 AC 38 ms
52,212 KB
testcase_12 AC 39 ms
51,948 KB
testcase_13 AC 38 ms
52,416 KB
testcase_14 AC 37 ms
52,032 KB
testcase_15 AC 37 ms
52,612 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 182 ms
133,088 KB
testcase_27 AC 184 ms
132,652 KB
testcase_28 AC 186 ms
133,316 KB
testcase_29 AC 182 ms
132,944 KB
testcase_30 AC 184 ms
133,360 KB
testcase_31 AC 163 ms
117,376 KB
testcase_32 AC 161 ms
119,912 KB
testcase_33 AC 149 ms
138,696 KB
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = 0
        s = 1
        k = a[i]
        while k+count*2 in dic:
            ans += s
            if k+count*2-1 in dic:
                s += 1
            used[dic[k+count*2]] = 1
            count += 1
        

print(ans)
0