結果

問題 No.1268 Fruit Rush 2
ユーザー titiatitia
提出日時 2020-10-24 01:04:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 411 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 71,172 KB
最終ジャッジ日時 2024-07-21 14:37:04
合計ジャッジ時間 8,386 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 26 ms
10,880 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 27 ms
10,880 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 28 ms
10,880 KB
testcase_15 AC 27 ms
10,752 KB
testcase_16 AC 281 ms
42,684 KB
testcase_17 AC 240 ms
32,208 KB
testcase_18 AC 269 ms
41,768 KB
testcase_19 AC 265 ms
41,776 KB
testcase_20 AC 255 ms
32,244 KB
testcase_21 AC 253 ms
33,268 KB
testcase_22 AC 283 ms
42,800 KB
testcase_23 AC 290 ms
42,752 KB
testcase_24 AC 271 ms
41,852 KB
testcase_25 AC 249 ms
32,360 KB
testcase_26 AC 408 ms
49,004 KB
testcase_27 AC 411 ms
48,964 KB
testcase_28 AC 395 ms
48,992 KB
testcase_29 AC 402 ms
49,052 KB
testcase_30 AC 402 ms
48,936 KB
testcase_31 AC 358 ms
58,592 KB
testcase_32 AC 358 ms
58,488 KB
testcase_33 AC 317 ms
61,332 KB
testcase_34 AC 294 ms
68,468 KB
testcase_35 AC 329 ms
71,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=sorted(map(int,input().split()))
DP=dict()
ANS=0
SET=set(A)

a=0
i=0
for a in A:
    if a in DP:
        DP[a]+=1
    else:
        DP[a]=1
    if a-1 in DP:
        DP[a+1]=DP[a-1]

ANS=0
for x in DP:
    ANS+=DP[x]
print(ANS)
0