結果

問題 No.29 パワーアップ
ユーザー kano_townkano_town
提出日時 2014-11-21 14:13:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 517 bytes
コンパイル時間 3,651 ms
コンパイル使用メモリ 74,696 KB
実行使用メモリ 41,848 KB
最終ジャッジ日時 2024-06-10 21:30:14
合計ジャッジ時間 6,609 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,324 KB
testcase_01 AC 108 ms
40,524 KB
testcase_02 AC 116 ms
41,436 KB
testcase_03 AC 112 ms
41,632 KB
testcase_04 AC 103 ms
40,440 KB
testcase_05 AC 120 ms
41,600 KB
testcase_06 AC 126 ms
41,444 KB
testcase_07 AC 119 ms
41,220 KB
testcase_08 AC 105 ms
40,272 KB
testcase_09 AC 110 ms
41,128 KB
testcase_10 AC 123 ms
41,848 KB
testcase_11 AC 131 ms
41,720 KB
testcase_12 AC 104 ms
39,900 KB
testcase_13 AC 132 ms
41,804 KB
testcase_14 AC 128 ms
41,600 KB
testcase_15 AC 120 ms
41,464 KB
testcase_16 AC 124 ms
41,400 KB
testcase_17 AC 114 ms
40,904 KB
testcase_18 AC 122 ms
41,672 KB
testcase_19 AC 124 ms
41,648 KB
testcase_20 AC 103 ms
40,208 KB
testcase_21 AC 113 ms
41,028 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