結果

問題 No.29 パワーアップ
ユーザー suiginginsuigingin
提出日時 2015-07-07 22:28:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 5,000 ms
コード長 539 bytes
コンパイル時間 3,506 ms
コンパイル使用メモリ 75,524 KB
実行使用メモリ 41,764 KB
最終ジャッジ日時 2024-07-08 01:32:23
合計ジャッジ時間 6,238 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,352 KB
testcase_01 AC 110 ms
41,108 KB
testcase_02 AC 111 ms
41,164 KB
testcase_03 AC 109 ms
40,976 KB
testcase_04 AC 108 ms
41,276 KB
testcase_05 AC 118 ms
41,424 KB
testcase_06 AC 121 ms
41,400 KB
testcase_07 AC 120 ms
41,252 KB
testcase_08 AC 114 ms
41,380 KB
testcase_09 AC 107 ms
41,324 KB
testcase_10 AC 117 ms
41,088 KB
testcase_11 AC 129 ms
41,100 KB
testcase_12 AC 97 ms
40,268 KB
testcase_13 AC 119 ms
41,764 KB
testcase_14 AC 123 ms
41,500 KB
testcase_15 AC 153 ms
41,364 KB
testcase_16 AC 127 ms
41,584 KB
testcase_17 AC 113 ms
41,148 KB
testcase_18 AC 117 ms
41,172 KB
testcase_19 AC 114 ms
40,980 KB
testcase_20 AC 108 ms
41,020 KB
testcase_21 AC 104 ms
41,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No_029 {
	Scanner sc = new Scanner(System.in);

	void run() {
		int N = sc.nextInt();
		int res = 0;
		int[] cnt = new int[10];
		while (N-- > 0) {
			cnt[sc.nextInt() - 1]++;
			cnt[sc.nextInt() - 1]++;
			cnt[sc.nextInt() - 1]++;
		}
		int sum = 0;
		for (int i = 0; i < 10; i++) {
			res += cnt[i] / 2;
			cnt[i] -= cnt[i] / 2 * 2;
			sum += cnt[i];
		}
		res += sum / 4;
		System.out.println(res);
	}

	public static void main(String[] args) {
		new No_029().run();
	}
}
0