結果

問題 No.1268 Fruit Rush 2
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2020-10-31 18:18:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 497 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 139,100 KB
最終ジャッジ日時 2024-07-22 05:07:13
合計ジャッジ時間 5,534 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,120 KB
testcase_01 AC 39 ms
52,184 KB
testcase_02 AC 38 ms
53,148 KB
testcase_03 AC 39 ms
53,900 KB
testcase_04 AC 38 ms
53,872 KB
testcase_05 AC 38 ms
52,088 KB
testcase_06 AC 37 ms
52,856 KB
testcase_07 AC 37 ms
52,712 KB
testcase_08 AC 39 ms
52,364 KB
testcase_09 AC 39 ms
52,132 KB
testcase_10 AC 38 ms
53,236 KB
testcase_11 AC 39 ms
52,740 KB
testcase_12 AC 39 ms
53,000 KB
testcase_13 AC 39 ms
52,684 KB
testcase_14 AC 38 ms
53,536 KB
testcase_15 AC 36 ms
52,820 KB
testcase_16 AC 148 ms
127,580 KB
testcase_17 AC 139 ms
120,996 KB
testcase_18 AC 139 ms
121,152 KB
testcase_19 AC 141 ms
121,232 KB
testcase_20 AC 139 ms
121,540 KB
testcase_21 AC 142 ms
120,896 KB
testcase_22 AC 148 ms
127,500 KB
testcase_23 AC 151 ms
127,024 KB
testcase_24 AC 146 ms
121,600 KB
testcase_25 AC 142 ms
120,832 KB
testcase_26 AC 175 ms
133,528 KB
testcase_27 AC 180 ms
132,980 KB
testcase_28 AC 180 ms
132,828 KB
testcase_29 AC 179 ms
133,280 KB
testcase_30 AC 180 ms
133,028 KB
testcase_31 AC 162 ms
117,276 KB
testcase_32 AC 166 ms
119,652 KB
testcase_33 AC 152 ms
138,892 KB
testcase_34 AC 127 ms
122,264 KB
testcase_35 AC 144 ms
139,100 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