結果

問題 No.1268 Fruit Rush 2
ユーザー ああいいああいい
提出日時 2022-03-16 22:53:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 171,348 KB
最終ジャッジ日時 2024-09-25 01:53:30
合計ジャッジ時間 6,867 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,564 KB
testcase_01 AC 40 ms
53,936 KB
testcase_02 AC 39 ms
54,180 KB
testcase_03 AC 40 ms
54,528 KB
testcase_04 AC 40 ms
53,832 KB
testcase_05 AC 41 ms
54,512 KB
testcase_06 AC 39 ms
53,812 KB
testcase_07 AC 39 ms
54,048 KB
testcase_08 AC 41 ms
54,352 KB
testcase_09 AC 39 ms
53,160 KB
testcase_10 AC 39 ms
54,748 KB
testcase_11 AC 40 ms
54,532 KB
testcase_12 AC 40 ms
53,484 KB
testcase_13 AC 40 ms
53,828 KB
testcase_14 AC 41 ms
54,644 KB
testcase_15 AC 40 ms
53,748 KB
testcase_16 AC 150 ms
121,340 KB
testcase_17 AC 140 ms
119,980 KB
testcase_18 AC 143 ms
120,772 KB
testcase_19 AC 144 ms
120,480 KB
testcase_20 AC 141 ms
120,560 KB
testcase_21 AC 142 ms
119,800 KB
testcase_22 AC 151 ms
118,668 KB
testcase_23 AC 148 ms
118,652 KB
testcase_24 AC 143 ms
120,720 KB
testcase_25 AC 144 ms
120,160 KB
testcase_26 AC 227 ms
165,936 KB
testcase_27 AC 223 ms
165,756 KB
testcase_28 AC 222 ms
165,776 KB
testcase_29 AC 224 ms
165,700 KB
testcase_30 AC 225 ms
165,780 KB
testcase_31 AC 164 ms
110,024 KB
testcase_32 AC 165 ms
109,484 KB
testcase_33 AC 147 ms
137,200 KB
testcase_34 AC 152 ms
144,012 KB
testcase_35 AC 170 ms
171,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
A.sort()
from collections  import defaultdict
d = defaultdict(int)
for a in A:
    d[a] += 1
for a in reversed(A):
    if a - 2 in d:
        d[a-2] += d[a]
ans = 0
for a in A:
    ans += 1 + d[a+1]
print(ans)
0