結果

問題 No.29 パワーアップ
ユーザー kano_townkano_town
提出日時 2014-11-21 14:13:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 517 bytes
コンパイル時間 3,417 ms
コンパイル使用メモリ 76,440 KB
実行使用メモリ 41,916 KB
最終ジャッジ日時 2025-01-02 19:59:25
合計ジャッジ時間 7,207 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,540 KB
testcase_01 AC 108 ms
41,436 KB
testcase_02 AC 105 ms
41,600 KB
testcase_03 AC 111 ms
41,568 KB
testcase_04 AC 109 ms
41,432 KB
testcase_05 AC 132 ms
41,836 KB
testcase_06 AC 119 ms
41,660 KB
testcase_07 AC 124 ms
41,700 KB
testcase_08 AC 116 ms
41,672 KB
testcase_09 AC 109 ms
41,556 KB
testcase_10 AC 123 ms
41,916 KB
testcase_11 AC 125 ms
41,728 KB
testcase_12 AC 110 ms
41,288 KB
testcase_13 AC 118 ms
41,716 KB
testcase_14 AC 134 ms
41,592 KB
testcase_15 AC 120 ms
41,816 KB
testcase_16 AC 122 ms
41,856 KB
testcase_17 AC 117 ms
41,456 KB
testcase_18 AC 121 ms
41,560 KB
testcase_19 AC 118 ms
41,552 KB
testcase_20 AC 114 ms
41,600 KB
testcase_21 AC 115 ms
41,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Yukicoder29 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] item = new int[10];

		Arrays.fill(item, 0);
		for (int i = 0; i < n * 3; i++) {
			item[sc.nextInt() - 1]++;
		}

		int res = 0, other = 0;
		for (int i = 0; i < 10; i++) {
			if (item[i] >= 2) {
				res += item[i] / 2;
			}
			other += item[i] % 2;
		}
		System.out.println(res + other / 4);
	}
}
0