結果

問題 No.29 パワーアップ
ユーザー jp_stejp_ste
提出日時 2014-11-09 17:02:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 851 bytes
コンパイル時間 2,337 ms
コンパイル使用メモリ 74,944 KB
実行使用メモリ 37,300 KB
最終ジャッジ日時 2024-06-10 01:53:37
合計ジャッジ時間 3,465 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
36,988 KB
testcase_01 AC 44 ms
37,256 KB
testcase_02 AC 45 ms
37,240 KB
testcase_03 AC 44 ms
36,992 KB
testcase_04 AC 43 ms
37,028 KB
testcase_05 AC 44 ms
37,252 KB
testcase_06 AC 44 ms
37,260 KB
testcase_07 AC 43 ms
36,840 KB
testcase_08 AC 43 ms
37,172 KB
testcase_09 AC 43 ms
37,108 KB
testcase_10 AC 43 ms
36,840 KB
testcase_11 AC 43 ms
37,232 KB
testcase_12 AC 42 ms
37,028 KB
testcase_13 AC 44 ms
36,992 KB
testcase_14 AC 44 ms
37,104 KB
testcase_15 AC 44 ms
37,268 KB
testcase_16 AC 45 ms
37,212 KB
testcase_17 AC 45 ms
37,300 KB
testcase_18 AC 46 ms
36,960 KB
testcase_19 AC 47 ms
36,816 KB
testcase_20 AC 45 ms
37,228 KB
testcase_21 AC 43 ms
37,232 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