結果

問題 No.29 パワーアップ
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-21 14:34:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 5,000 ms
コード長 563 bytes
コンパイル時間 2,193 ms
コンパイル使用メモリ 74,872 KB
実行使用メモリ 41,880 KB
最終ジャッジ日時 2024-05-01 09:13:51
合計ジャッジ時間 6,159 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,120 KB
testcase_01 AC 116 ms
41,244 KB
testcase_02 AC 129 ms
41,432 KB
testcase_03 AC 118 ms
40,448 KB
testcase_04 AC 129 ms
41,300 KB
testcase_05 AC 152 ms
41,680 KB
testcase_06 AC 145 ms
41,612 KB
testcase_07 AC 137 ms
41,296 KB
testcase_08 AC 135 ms
41,604 KB
testcase_09 AC 130 ms
41,084 KB
testcase_10 AC 145 ms
41,880 KB
testcase_11 AC 147 ms
41,648 KB
testcase_12 AC 133 ms
41,564 KB
testcase_13 AC 141 ms
41,552 KB
testcase_14 AC 140 ms
41,744 KB
testcase_15 AC 142 ms
41,596 KB
testcase_16 AC 140 ms
41,512 KB
testcase_17 AC 135 ms
41,268 KB
testcase_18 AC 137 ms
41,456 KB
testcase_19 AC 135 ms
41,640 KB
testcase_20 AC 132 ms
41,784 KB
testcase_21 AC 133 ms
41,432 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++) {
			if(x[i] >= 2) {
				ans += x[i] / 2;
				if(x[i] % 2 == 1) cnt++;
			} else if(x[i] == 1 || x[i] % 2 == 1) {
				cnt++;
			}
		}
		ans += cnt / 4;
		System.out.println(ans);
 	}
}

0