結果
| 問題 | No.120 傾向と対策:門松列(その1) | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2017-07-18 18:56:44 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 841 bytes | 
| コンパイル時間 | 1,763 ms | 
| コンパイル使用メモリ | 81,952 KB | 
| 実行使用メモリ | 5,248 KB | 
| 最終ジャッジ日時 | 2024-10-08 10:56:50 | 
| 合計ジャッジ時間 | 1,450 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | WA * 4 | 
ソースコード
#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;
}
            
            
            
        