結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,456 KB
testcase_01 AC 43 ms
54,748 KB
testcase_02 AC 42 ms
54,188 KB
testcase_03 AC 41 ms
53,748 KB
testcase_04 AC 42 ms
54,380 KB
testcase_05 AC 42 ms
55,132 KB
testcase_06 AC 42 ms
54,516 KB
testcase_07 AC 42 ms
55,388 KB
testcase_08 AC 42 ms
54,176 KB
testcase_09 AC 42 ms
54,372 KB
testcase_10 AC 42 ms
54,112 KB
testcase_11 AC 42 ms
54,452 KB
testcase_12 AC 42 ms
54,380 KB
testcase_13 AC 43 ms
54,636 KB
testcase_14 AC 42 ms
54,860 KB
testcase_15 AC 42 ms
54,172 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
136,580 KB
testcase_27 AC 188 ms
136,056 KB
testcase_28 AC 185 ms
136,356 KB
testcase_29 AC 187 ms
135,960 KB
testcase_30 AC 188 ms
136,700 KB
testcase_31 AC 205 ms
162,100 KB
testcase_32 AC 203 ms
161,756 KB
testcase_33 AC 174 ms
174,252 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:
        dp[a+1] = 1 + dp[a-1]
    S.add(a)
print(sum(dp.values()) + N)
0