結果

問題 No.1268 Fruit Rush 2
ユーザー tamatotamato
提出日時 2020-10-23 23:05:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 471 ms / 2,000 ms
コード長 553 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 231,720 KB
最終ジャッジ日時 2024-07-21 12:24:21
合計ジャッジ時間 7,649 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,000 KB
testcase_01 AC 39 ms
52,788 KB
testcase_02 AC 41 ms
53,968 KB
testcase_03 AC 39 ms
52,220 KB
testcase_04 AC 38 ms
52,872 KB
testcase_05 AC 38 ms
53,532 KB
testcase_06 AC 38 ms
52,552 KB
testcase_07 AC 39 ms
52,732 KB
testcase_08 AC 38 ms
53,540 KB
testcase_09 AC 38 ms
53,276 KB
testcase_10 AC 38 ms
52,812 KB
testcase_11 AC 38 ms
53,632 KB
testcase_12 AC 38 ms
52,816 KB
testcase_13 AC 39 ms
53,820 KB
testcase_14 AC 40 ms
53,280 KB
testcase_15 AC 39 ms
52,628 KB
testcase_16 AC 213 ms
155,596 KB
testcase_17 AC 193 ms
150,296 KB
testcase_18 AC 200 ms
150,636 KB
testcase_19 AC 202 ms
150,212 KB
testcase_20 AC 201 ms
150,268 KB
testcase_21 AC 197 ms
150,404 KB
testcase_22 AC 207 ms
155,668 KB
testcase_23 AC 209 ms
156,208 KB
testcase_24 AC 198 ms
150,404 KB
testcase_25 AC 200 ms
150,028 KB
testcase_26 AC 470 ms
230,340 KB
testcase_27 AC 471 ms
231,720 KB
testcase_28 AC 464 ms
230,784 KB
testcase_29 AC 459 ms
230,468 KB
testcase_30 AC 470 ms
230,224 KB
testcase_31 AC 226 ms
137,472 KB
testcase_32 AC 227 ms
137,344 KB
testcase_33 AC 179 ms
170,328 KB
testcase_34 AC 195 ms
201,600 KB
testcase_35 AC 208 ms
206,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    A = list(map(int, input().split()))
    A_set = set(A)
    dic = {}
    for a in A:
        dic[a] = 1
        if a-1 not in dic:
            dic[a-1] = 0
        if a+1 not in dic:
            dic[a+1] = 0
    B = list(dic.keys())
    B.sort()
    ans = 0
    for i in range(1, len(B)):
        if B[i] - 1 in A_set:
            dic[B[i]] += dic[B[i] - 2]
        ans += dic[B[i]]
    print(ans)


if __name__ == '__main__':
    main()
0