結果

問題 No.1268 Fruit Rush 2
ユーザー kotatsugamekotatsugame
提出日時 2020-10-24 01:55:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 728 ms
コンパイル使用メモリ 69,880 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-21 14:47:00
合計ジャッジ時間 3,923 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 60 ms
6,944 KB
testcase_17 AC 53 ms
6,940 KB
testcase_18 AC 55 ms
6,940 KB
testcase_19 AC 54 ms
6,940 KB
testcase_20 AC 53 ms
6,940 KB
testcase_21 AC 52 ms
6,940 KB
testcase_22 AC 61 ms
6,940 KB
testcase_23 AC 61 ms
6,944 KB
testcase_24 AC 54 ms
6,944 KB
testcase_25 AC 54 ms
6,944 KB
testcase_26 AC 103 ms
6,944 KB
testcase_27 AC 104 ms
6,940 KB
testcase_28 AC 102 ms
6,940 KB
testcase_29 AC 103 ms
6,940 KB
testcase_30 AC 103 ms
6,944 KB
testcase_31 AC 78 ms
6,940 KB
testcase_32 AC 78 ms
6,944 KB
testcase_33 AC 140 ms
6,944 KB
testcase_34 AC 67 ms
6,940 KB
testcase_35 AC 140 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<algorithm>
using namespace std;
int N;
long A[2<<17];
long ans;
int cnt[2<<17];
main()
{
	cin>>N;
	for(int i=0;i<N;i++)cin>>A[i];
	sort(A,A+N);
	for(int i=N;i--;)
	{
		if(A[i+1]==A[i]+2)cnt[i]=cnt[i+1]+1;
		else if(A[i+2]==A[i]+2)cnt[i]=cnt[i+2]+1;
		else cnt[i]=1;
	}
	for(int i=0;i<N;i++)
	{
		ans++;
		if(A[i]+1==A[i+1])ans+=cnt[i+1];
	}
	cout<<ans<<endl;
}
0