結果

問題 No.29 パワーアップ
ユーザー タキノボリタキノボリ
提出日時 2019-02-11 14:34:06
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 631 bytes
コンパイル時間 458 ms
コンパイル使用メモリ 60,968 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-18 10:10:09
合計ジャッジ時間 4,301 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 2 ms
6,940 KB
testcase_21 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <array>
int main()
{
	int N;
	std::cin >> N;
	std::vector<int> Item;
	Item.resize(N * 3);
	for (int i = 0; i < N * 3; i++)
	{
		std::cin >> Item[i];
	}
	std::array<int, 10> ItemAll;
	for (int i = 0; i < 10; i++)
	{
		ItemAll[i] = 0;
	}
	for (int i = 0, n = (unsigned)Item.size(); i < n; i++)
	{
		ItemAll[Item[i]]++;
	}
	int PowerUp = 0;
	for (int i = 0; i < 10; i++)
	{
		while (ItemAll[i] >= 2)
		{
			PowerUp++;
			ItemAll[i] -= 2;
		}
	}
	for (int i = 1; i < 10; i++)
	{
		ItemAll[0] += ItemAll[i];
	}
	PowerUp += ItemAll[0] / 4;

	std::cout << PowerUp << std::endl;

	return 0;
}
0