結果

問題 No.1268 Fruit Rush 2
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2020-10-31 17:59:00
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 275 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 146,060 KB
最終ジャッジ日時 2024-07-22 05:06:56
合計ジャッジ時間 8,851 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,648 KB
testcase_01 AC 39 ms
53,164 KB
testcase_02 AC 40 ms
52,236 KB
testcase_03 AC 38 ms
52,968 KB
testcase_04 AC 38 ms
52,864 KB
testcase_05 AC 39 ms
52,956 KB
testcase_06 AC 39 ms
52,344 KB
testcase_07 AC 39 ms
52,312 KB
testcase_08 AC 38 ms
52,500 KB
testcase_09 AC 39 ms
52,756 KB
testcase_10 AC 39 ms
52,140 KB
testcase_11 AC 38 ms
52,204 KB
testcase_12 AC 37 ms
53,072 KB
testcase_13 AC 38 ms
52,288 KB
testcase_14 AC 36 ms
51,820 KB
testcase_15 AC 37 ms
52,252 KB
testcase_16 AC 150 ms
123,688 KB
testcase_17 AC 125 ms
115,304 KB
testcase_18 AC 128 ms
115,876 KB
testcase_19 AC 136 ms
117,736 KB
testcase_20 AC 129 ms
115,648 KB
testcase_21 AC 135 ms
117,856 KB
testcase_22 AC 161 ms
122,212 KB
testcase_23 AC 149 ms
123,604 KB
testcase_24 AC 130 ms
116,132 KB
testcase_25 AC 129 ms
115,972 KB
testcase_26 AC 178 ms
131,540 KB
testcase_27 AC 176 ms
131,600 KB
testcase_28 AC 174 ms
131,464 KB
testcase_29 AC 177 ms
131,668 KB
testcase_30 AC 175 ms
131,156 KB
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dic = {}
for i in a:
    dic[i] = 1

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

print(ans)
0