結果

問題 No.1268 Fruit Rush 2
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-10-17 07:11:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 353 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 195,600 KB
最終ジャッジ日時 2024-06-27 23:17:39
合計ジャッジ時間 6,314 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
56,476 KB
testcase_01 AC 44 ms
55,708 KB
testcase_02 WA -
testcase_03 AC 47 ms
55,052 KB
testcase_04 AC 45 ms
55,524 KB
testcase_05 AC 45 ms
55,716 KB
testcase_06 AC 45 ms
55,112 KB
testcase_07 AC 46 ms
57,004 KB
testcase_08 AC 45 ms
57,060 KB
testcase_09 AC 46 ms
55,684 KB
testcase_10 AC 45 ms
56,056 KB
testcase_11 AC 45 ms
56,616 KB
testcase_12 AC 45 ms
55,828 KB
testcase_13 AC 45 ms
56,104 KB
testcase_14 AC 46 ms
55,712 KB
testcase_15 AC 45 ms
55,608 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 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 173 ms
111,392 KB
testcase_32 AC 170 ms
111,276 KB
testcase_33 AC 154 ms
139,752 KB
testcase_34 AC 168 ms
164,020 KB
testcase_35 AC 180 ms
173,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N = int(input())
A = list(map(int,input().split()))

dp = defaultdict(lambda:0)
A.sort()

for a in A:
    
    dp[a+1] += 1
    
    dp[a] += dp[a-2]
    
ans = N
for a in A:
    ans += dp[a]
print(ans)
    
    


0