結果

問題 No.1268 Fruit Rush 2
ユーザー mlihua09mlihua09
提出日時 2020-10-23 23:27:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 321 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 127,392 KB
最終ジャッジ日時 2024-07-21 13:23:22
合計ジャッジ時間 13,407 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 39 ms
51,456 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 40 ms
51,968 KB
testcase_10 AC 39 ms
51,840 KB
testcase_11 AC 40 ms
51,840 KB
testcase_12 AC 39 ms
51,968 KB
testcase_13 AC 39 ms
52,224 KB
testcase_14 AC 39 ms
51,968 KB
testcase_15 AC 39 ms
51,584 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 728 ms
116,552 KB
testcase_27 AC 728 ms
116,176 KB
testcase_28 AC 737 ms
116,032 KB
testcase_29 AC 735 ms
116,448 KB
testcase_30 AC 744 ms
116,028 KB
testcase_31 AC 772 ms
112,948 KB
testcase_32 AC 773 ms
112,564 KB
testcase_33 AC 165 ms
127,392 KB
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

A = list(map(lambda x: [int(x), 1], input().split()))

ans = N

A.sort()

for i in range(N - 1):
    
    if A[i][0] == A[i + 1][0] - 1:
        
        ans += A[i][1]
        
        if i < N - 2 and A[i + 2][0] == A[i][0] + 2:
            
            A[i + 2][1] += A[i][1]
            
print(ans)
0