結果

問題 No.29 パワーアップ
ユーザー soujikisoujiki
提出日時 2015-04-24 20:44:53
言語 Java
(openjdk 23)
結果
AC  
実行時間 162 ms / 5,000 ms
コード長 576 bytes
コンパイル時間 3,576 ms
コンパイル使用メモリ 74,360 KB
実行使用メモリ 41,872 KB
最終ジャッジ日時 2024-07-05 01:10:12
合計ジャッジ時間 7,364 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,204 KB
testcase_01 AC 134 ms
41,268 KB
testcase_02 AC 132 ms
41,368 KB
testcase_03 AC 135 ms
41,672 KB
testcase_04 AC 132 ms
41,460 KB
testcase_05 AC 149 ms
41,540 KB
testcase_06 AC 147 ms
41,608 KB
testcase_07 AC 140 ms
41,344 KB
testcase_08 AC 140 ms
41,120 KB
testcase_09 AC 133 ms
41,368 KB
testcase_10 AC 159 ms
41,524 KB
testcase_11 AC 162 ms
41,872 KB
testcase_12 AC 136 ms
41,312 KB
testcase_13 AC 147 ms
41,192 KB
testcase_14 AC 146 ms
41,628 KB
testcase_15 AC 145 ms
41,212 KB
testcase_16 AC 146 ms
41,836 KB
testcase_17 AC 135 ms
41,512 KB
testcase_18 AC 140 ms
41,164 KB
testcase_19 AC 141 ms
41,288 KB
testcase_20 AC 134 ms
41,296 KB
testcase_21 AC 134 ms
41,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Yukicoder_29{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		int N = stdIn.nextInt();
		int[] num = new int[11];

		for(int i=0;i<N;i++){
			int a = stdIn.nextInt();
			int b = stdIn.nextInt();
			int c = stdIn.nextInt();
			num[a]++;
			num[b]++;
			num[c]++;
		}
		int count = 0;
		for(int i=1;i<11;i++){
			while(num[i]>=2){
				num[i] = num[i] - 2;
				count++;
			}
		}
		int counter = 0;
		for(int i=1;i<11;i++){
			counter += num[i];
		}
		count += counter/4;

		System.out.println(count);

	}

}
0