結果

問題 No.29 パワーアップ
ユーザー TatsuDXTatsuDX
提出日時 2016-09-08 23:32:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 5,000 ms
コード長 403 bytes
コンパイル時間 4,116 ms
コンパイル使用メモリ 74,296 KB
実行使用メモリ 42,020 KB
最終ジャッジ日時 2024-11-15 22:27:04
合計ジャッジ時間 7,793 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
40,988 KB
testcase_01 AC 140 ms
41,172 KB
testcase_02 AC 140 ms
41,188 KB
testcase_03 AC 142 ms
41,140 KB
testcase_04 AC 142 ms
41,292 KB
testcase_05 AC 162 ms
41,540 KB
testcase_06 AC 157 ms
41,608 KB
testcase_07 AC 151 ms
40,992 KB
testcase_08 AC 150 ms
41,492 KB
testcase_09 AC 143 ms
41,472 KB
testcase_10 AC 161 ms
42,004 KB
testcase_11 AC 158 ms
41,332 KB
testcase_12 AC 139 ms
41,000 KB
testcase_13 AC 152 ms
41,520 KB
testcase_14 AC 156 ms
42,020 KB
testcase_15 AC 150 ms
41,572 KB
testcase_16 AC 150 ms
41,436 KB
testcase_17 AC 141 ms
41,164 KB
testcase_18 AC 146 ms
40,968 KB
testcase_19 AC 144 ms
41,772 KB
testcase_20 AC 134 ms
41,128 KB
testcase_21 AC 135 ms
40,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int[] t = new int[10];
		int n = sc.nextInt() * 3, cnt = 0;
		for (int i = 0; i < n; i++) {
			t[sc.nextInt() - 1]++;
		}
		for (int i = 0; i < 10; i++) {
			while (t[i] >= 2) {
				cnt++;
				n -= 2;
				t[i] -= 2;
			}
		}
		cnt += n / 4;
		System.out.println(cnt);
	}
}
0