結果

問題 No.1268 Fruit Rush 2
ユーザー chineristACchineristAC
提出日時 2020-10-24 01:37:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 81,820 KB
実行使用メモリ 107,904 KB
最終ジャッジ日時 2024-07-21 14:45:00
合計ジャッジ時間 4,563 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,100 KB
testcase_01 AC 40 ms
52,948 KB
testcase_02 AC 37 ms
51,876 KB
testcase_03 AC 37 ms
52,992 KB
testcase_04 AC 39 ms
52,548 KB
testcase_05 AC 37 ms
52,768 KB
testcase_06 AC 39 ms
52,616 KB
testcase_07 AC 39 ms
53,016 KB
testcase_08 AC 39 ms
53,612 KB
testcase_09 AC 37 ms
52,160 KB
testcase_10 AC 37 ms
52,268 KB
testcase_11 AC 37 ms
52,900 KB
testcase_12 AC 37 ms
52,676 KB
testcase_13 AC 37 ms
53,044 KB
testcase_14 AC 37 ms
53,304 KB
testcase_15 AC 37 ms
51,952 KB
testcase_16 AC 110 ms
100,232 KB
testcase_17 AC 104 ms
95,716 KB
testcase_18 AC 103 ms
96,180 KB
testcase_19 AC 103 ms
96,976 KB
testcase_20 AC 103 ms
96,120 KB
testcase_21 AC 101 ms
95,864 KB
testcase_22 AC 112 ms
100,568 KB
testcase_23 AC 113 ms
99,480 KB
testcase_24 AC 102 ms
97,796 KB
testcase_25 AC 102 ms
96,132 KB
testcase_26 AC 138 ms
102,592 KB
testcase_27 AC 137 ms
102,492 KB
testcase_28 AC 134 ms
102,284 KB
testcase_29 AC 137 ms
102,564 KB
testcase_30 AC 137 ms
102,132 KB
testcase_31 AC 122 ms
107,904 KB
testcase_32 AC 127 ms
107,344 KB
testcase_33 AC 107 ms
107,036 KB
testcase_34 AC 85 ms
106,192 KB
testcase_35 AC 106 ms
106,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

A = list(map(int,input().split()))
A.sort()
data = [1 for i in range(N)]
for i in range(N-2,-1,-1):
    if i+1<N and A[i+1]==A[i]+2:
        data[i] += data[i+1]
    elif i+2<N and A[i+2]==A[i]+2:
        data[i] += data[i+2]

res = N
for i in range(N-2,-1,-1):
    if A[i+1]==A[i]+1:
        res += data[i+1]

print(res)
0