結果

問題 No.1268 Fruit Rush 2
ユーザー chineristACchineristAC
提出日時 2020-10-24 01:32:22
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 238 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 133,948 KB
最終ジャッジ日時 2024-07-21 14:44:03
合計ジャッジ時間 4,694 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
59,380 KB
testcase_01 AC 32 ms
52,588 KB
testcase_02 AC 34 ms
52,268 KB
testcase_03 AC 36 ms
52,220 KB
testcase_04 AC 35 ms
52,948 KB
testcase_05 AC 35 ms
52,884 KB
testcase_06 AC 31 ms
52,100 KB
testcase_07 AC 32 ms
53,136 KB
testcase_08 AC 32 ms
52,364 KB
testcase_09 AC 33 ms
53,184 KB
testcase_10 AC 31 ms
51,944 KB
testcase_11 AC 32 ms
52,948 KB
testcase_12 AC 31 ms
52,724 KB
testcase_13 AC 39 ms
52,632 KB
testcase_14 AC 36 ms
53,080 KB
testcase_15 AC 34 ms
53,276 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

A = list(map(int,input().split()))
A.sort()
dic = {a:0 for a in A}
for a in A[::-1]:
    dic[a] = 1
    if a+2 in dic:
        dic[a] += dic[a+2]

res = N
for a in A:
    if a+1 in A:
        res += dic[a+1]

print(res)
0