結果

問題 No.1268 Fruit Rush 2
ユーザー tpynerivertpyneriver
提出日時 2020-10-23 23:09:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 4,095 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 169,356 KB
最終ジャッジ日時 2024-07-21 12:29:32
合計ジャッジ時間 6,135 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,176 KB
testcase_01 AC 36 ms
54,552 KB
testcase_02 AC 41 ms
54,596 KB
testcase_03 AC 36 ms
54,244 KB
testcase_04 AC 35 ms
53,936 KB
testcase_05 AC 34 ms
55,108 KB
testcase_06 AC 36 ms
54,436 KB
testcase_07 AC 34 ms
54,788 KB
testcase_08 AC 37 ms
54,348 KB
testcase_09 AC 35 ms
53,988 KB
testcase_10 AC 37 ms
54,504 KB
testcase_11 AC 36 ms
53,420 KB
testcase_12 AC 35 ms
54,944 KB
testcase_13 AC 34 ms
53,696 KB
testcase_14 AC 36 ms
53,648 KB
testcase_15 AC 36 ms
54,344 KB
testcase_16 AC 149 ms
123,080 KB
testcase_17 AC 135 ms
117,112 KB
testcase_18 AC 139 ms
117,624 KB
testcase_19 AC 138 ms
117,152 KB
testcase_20 AC 137 ms
117,528 KB
testcase_21 AC 136 ms
117,096 KB
testcase_22 AC 167 ms
123,076 KB
testcase_23 AC 155 ms
123,144 KB
testcase_24 AC 141 ms
117,752 KB
testcase_25 AC 139 ms
117,100 KB
testcase_26 AC 220 ms
163,200 KB
testcase_27 AC 216 ms
163,012 KB
testcase_28 AC 211 ms
163,192 KB
testcase_29 AC 209 ms
162,764 KB
testcase_30 AC 211 ms
163,076 KB
testcase_31 AC 166 ms
139,624 KB
testcase_32 AC 166 ms
137,140 KB
testcase_33 AC 151 ms
169,256 KB
testcase_34 AC 130 ms
136,244 KB
testcase_35 AC 149 ms
169,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
from collections import Counter


N = int(readline())
A = list(map(int, readline().split()))
A.sort()
SA = set(A)
table = Counter()
ans = len(A)
for a in A:
    if a-1 in SA:
        table[a] += 1
    table[a+2] += table[a]
    ans += table[a]

print(ans)
0