結果

問題 No.29 パワーアップ
ユーザー koukonkokoukonko
提出日時 2015-12-07 13:49:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 827 bytes
コンパイル時間 2,124 ms
コンパイル使用メモリ 77,116 KB
実行使用メモリ 50,420 KB
最終ジャッジ日時 2024-09-14 18:18:57
合計ジャッジ時間 4,285 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
50,156 KB
testcase_01 AC 56 ms
50,380 KB
testcase_02 AC 56 ms
49,908 KB
testcase_03 AC 55 ms
50,092 KB
testcase_04 AC 55 ms
50,136 KB
testcase_05 AC 57 ms
50,264 KB
testcase_06 AC 55 ms
50,128 KB
testcase_07 AC 56 ms
50,128 KB
testcase_08 AC 58 ms
49,728 KB
testcase_09 AC 54 ms
49,864 KB
testcase_10 AC 54 ms
49,932 KB
testcase_11 AC 55 ms
50,000 KB
testcase_12 AC 53 ms
50,300 KB
testcase_13 AC 54 ms
50,144 KB
testcase_14 AC 54 ms
50,044 KB
testcase_15 AC 58 ms
50,124 KB
testcase_16 AC 54 ms
50,264 KB
testcase_17 AC 56 ms
50,420 KB
testcase_18 AC 53 ms
50,244 KB
testcase_19 AC 54 ms
49,916 KB
testcase_20 AC 53 ms
50,080 KB
testcase_21 AC 53 ms
50,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) {
		BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));

		try {
			int N = Integer.parseInt(buff.readLine());
			int sum = N * 3;
			int[] num = new int[10];

			for (int i = 0; i < N; ++i) {
				String[] box = buff.readLine().split(" ");
				for (int j = 0; j < box.length; ++j) {
					num[Integer.parseInt(box[j]) - 1]++;
				}
			}

			int ans = 0;
			for (int i = 0; i < 10; ++i) {

				if (num[i] >= 2) {
					ans += num[i] / 2;
					sum -= num[i] - (num[i] % 2);
					num[i] %= 2;
				}
			}
			if (sum >= 4) {
				ans += sum / 4;
			}

			System.out.println(ans);
		} catch (NumberFormatException e) {

		} catch (IOException e) {

		}
	}
}
0