結果

問題 No.120 傾向と対策:門松列(その1)
ユーザー nksk38nksk38
提出日時 2017-07-18 18:56:44
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 841 bytes
コンパイル時間 562 ms
コンパイル使用メモリ 82,900 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-17 01:59:00
合計ジャッジ時間 1,241 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<string>
#include<queue>
#include<vector>
#include<functional>
#include<cmath>
#include<map>
#include<stack>
#include<set>
#include<numeric>
#include<limits>

#define all(x) (x).begin(),(x).end()
#define rall(x) (x).rbegin(),(x).rend()

using namespace std;
typedef long long ll;
typedef pair<int, int> pi;
typedef pair<ll, ll> pl;
typedef pair<ll, string> pls;

int main()
{
	int T;  cin >> T;
	for (int i = 0; i < T; i++) {
		int N;  cin >> N;
		ll L[101], num = 1, ans = 0;
		for (int j = 0; j < N; j++) {
			cin >> L[j];
		}
		sort(L, L + N);
		for (int j = 1; j < N - 1; j++) {
			if (L[j] != L[j - 1])num++;
		}
		ll a = num, b = N - num;
		while (a >= 2 && b >= 1) {
			a -= 2;
			b -= 1;
			ans++;
		}
		if (a >= 3)ans += a / 3;
		cout << ans << endl;
	}
	return	0;
}

0