結果

問題 No.29 パワーアップ
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-21 14:37:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 475 bytes
コンパイル時間 2,270 ms
コンパイル使用メモリ 74,180 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-11-21 12:30:31
合計ジャッジ時間 5,961 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,088 KB
testcase_01 AC 122 ms
53,852 KB
testcase_02 AC 129 ms
53,928 KB
testcase_03 AC 129 ms
54,060 KB
testcase_04 AC 126 ms
53,880 KB
testcase_05 AC 148 ms
54,340 KB
testcase_06 AC 137 ms
53,952 KB
testcase_07 AC 135 ms
53,832 KB
testcase_08 AC 132 ms
54,092 KB
testcase_09 AC 130 ms
53,932 KB
testcase_10 AC 140 ms
54,188 KB
testcase_11 AC 142 ms
54,188 KB
testcase_12 AC 127 ms
53,996 KB
testcase_13 AC 142 ms
54,168 KB
testcase_14 AC 139 ms
54,040 KB
testcase_15 AC 140 ms
53,984 KB
testcase_16 AC 141 ms
54,268 KB
testcase_17 AC 131 ms
53,956 KB
testcase_18 AC 137 ms
54,308 KB
testcase_19 AC 136 ms
54,168 KB
testcase_20 AC 128 ms
54,020 KB
testcase_21 AC 131 ms
54,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] x = new int[11];
		for(int i = 0 ; i < n ; i++) {
			int a = sc.nextInt();
			int b = sc.nextInt();
			int c = sc.nextInt();
			x[a]++; x[b]++; x[c]++;
		}
		int ans = 0; int cnt = 0;
		for(int i = 0 ; i < 11 ; i++) {
			ans += x[i] / 2;
			cnt += x[i] % 2;
		}
		ans += cnt / 4;
		System.out.println(ans);
 	}
}

0