結果

問題 No.29 パワーアップ
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 15:15:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 5,000 ms
コード長 591 bytes
コンパイル時間 2,085 ms
コンパイル使用メモリ 73,944 KB
実行使用メモリ 54,384 KB
最終ジャッジ日時 2024-10-07 03:14:00
合計ジャッジ時間 6,149 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,916 KB
testcase_01 AC 134 ms
54,160 KB
testcase_02 AC 133 ms
54,076 KB
testcase_03 AC 134 ms
54,084 KB
testcase_04 AC 130 ms
53,852 KB
testcase_05 AC 148 ms
54,384 KB
testcase_06 AC 149 ms
53,952 KB
testcase_07 AC 139 ms
54,088 KB
testcase_08 AC 136 ms
53,868 KB
testcase_09 AC 132 ms
54,316 KB
testcase_10 AC 147 ms
54,220 KB
testcase_11 AC 146 ms
53,944 KB
testcase_12 AC 135 ms
54,184 KB
testcase_13 AC 146 ms
54,100 KB
testcase_14 AC 150 ms
54,224 KB
testcase_15 AC 144 ms
54,116 KB
testcase_16 AC 142 ms
54,064 KB
testcase_17 AC 136 ms
53,952 KB
testcase_18 AC 143 ms
53,940 KB
testcase_19 AC 141 ms
54,260 KB
testcase_20 AC 133 ms
54,096 KB
testcase_21 AC 133 ms
54,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int[] ar = new int[11];
		int times = 0;
		int n = sc.nextInt();
		for (int i=0; i<n; i++) {
			int a = sc.nextInt();
			int b = sc.nextInt();
			int c = sc.nextInt();
			ar[a]++;
			ar[b]++;
			ar[c]++;
		}
		
		for (int i=0; i<ar.length; i++) {
			if (ar[i]>=2) {
				int temp = ar[i]/2;
				times += temp;
				ar[i] -= temp*2;
			}
		}
		
		
		
		int sum = 0;
		for (int i=0; i<ar.length; i++) {
			sum += ar[i];
		}
		System.out.println(times+(sum/4));
	}
}
0