結果

問題 No.1268 Fruit Rush 2
ユーザー stnkienstnkien
提出日時 2020-10-23 23:57:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 241 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,780 KB
実行使用メモリ 174,196 KB
最終ジャッジ日時 2024-07-21 13:57:42
合計ジャッジ時間 5,917 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,376 KB
testcase_01 AC 45 ms
54,016 KB
testcase_02 AC 45 ms
53,248 KB
testcase_03 AC 43 ms
53,504 KB
testcase_04 AC 42 ms
53,504 KB
testcase_05 AC 43 ms
53,888 KB
testcase_06 AC 42 ms
53,632 KB
testcase_07 AC 42 ms
53,504 KB
testcase_08 AC 42 ms
53,888 KB
testcase_09 AC 42 ms
53,376 KB
testcase_10 AC 42 ms
53,632 KB
testcase_11 AC 42 ms
53,504 KB
testcase_12 AC 43 ms
53,376 KB
testcase_13 AC 42 ms
53,288 KB
testcase_14 AC 43 ms
53,632 KB
testcase_15 AC 44 ms
53,120 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 198 ms
136,380 KB
testcase_27 AC 201 ms
136,384 KB
testcase_28 AC 195 ms
136,384 KB
testcase_29 AC 189 ms
136,124 KB
testcase_30 AC 194 ms
136,136 KB
testcase_31 AC 208 ms
162,104 KB
testcase_32 AC 205 ms
162,112 KB
testcase_33 AC 178 ms
173,796 KB
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N = int(input())
*A, = map(int, input().split())
A.sort()

S = set()
dp = defaultdict(int)
for a in A:
    if a-1 in S or a-1 in dp:
        dp[a+1] = 1 + dp[a-1]
    S.add(a)
print(sum(dp.values()) + N)
0