結果

問題 No.29 パワーアップ
ユーザー jp_stejp_ste
提出日時 2014-11-09 17:02:20
言語 Java
(openjdk 23)
結果
AC  
実行時間 59 ms / 5,000 ms
コード長 851 bytes
コンパイル時間 2,230 ms
コンパイル使用メモリ 75,280 KB
実行使用メモリ 50,488 KB
最終ジャッジ日時 2024-12-31 08:52:38
合計ジャッジ時間 4,349 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,464 KB
testcase_01 AC 55 ms
50,376 KB
testcase_02 AC 54 ms
50,264 KB
testcase_03 AC 57 ms
50,336 KB
testcase_04 AC 55 ms
49,908 KB
testcase_05 AC 57 ms
50,280 KB
testcase_06 AC 57 ms
50,408 KB
testcase_07 AC 56 ms
50,412 KB
testcase_08 AC 56 ms
50,488 KB
testcase_09 AC 56 ms
50,440 KB
testcase_10 AC 59 ms
50,472 KB
testcase_11 AC 56 ms
49,904 KB
testcase_12 AC 55 ms
50,296 KB
testcase_13 AC 56 ms
50,412 KB
testcase_14 AC 58 ms
50,232 KB
testcase_15 AC 57 ms
50,076 KB
testcase_16 AC 57 ms
50,148 KB
testcase_17 AC 56 ms
50,012 KB
testcase_18 AC 56 ms
50,480 KB
testcase_19 AC 56 ms
50,428 KB
testcase_20 AC 55 ms
50,324 KB
testcase_21 AC 56 ms
50,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) throws IOException {
		BufferedReader r = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(r.readLine());
		int list[] = new int[10];
		
		StringTokenizer st;
		for(int i=0; i<n; i++) {
			st = new StringTokenizer(r.readLine());
			int a = Integer.parseInt(st.nextToken());
			int b = Integer.parseInt(st.nextToken());
			int c = Integer.parseInt(st.nextToken());
			list[a-1]++;
			list[b-1]++;
			list[c-1]++;
		}
		
		int ans = 0;
		int oddNum = 0;
		for(int i=0; i<10; i++) {
			ans += (list[i] / 2);
			if( list[i] % 2 == 1 ) oddNum++;
		}
		ans += (oddNum /4);
		System.out.println(ans);
	}
}
0