結果

問題 No.29 パワーアップ
ユーザー YamaKasaYamaKasa
提出日時 2018-04-20 01:06:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 703 bytes
コンパイル時間 2,223 ms
コンパイル使用メモリ 74,428 KB
実行使用メモリ 41,896 KB
最終ジャッジ日時 2024-06-27 04:59:21
合計ジャッジ時間 6,403 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,360 KB
testcase_01 AC 128 ms
41,508 KB
testcase_02 AC 126 ms
41,164 KB
testcase_03 AC 131 ms
41,352 KB
testcase_04 AC 129 ms
41,212 KB
testcase_05 AC 145 ms
41,768 KB
testcase_06 AC 143 ms
41,596 KB
testcase_07 AC 138 ms
41,388 KB
testcase_08 AC 125 ms
41,068 KB
testcase_09 AC 133 ms
41,436 KB
testcase_10 AC 146 ms
41,536 KB
testcase_11 AC 142 ms
41,608 KB
testcase_12 AC 115 ms
40,076 KB
testcase_13 AC 141 ms
41,448 KB
testcase_14 AC 144 ms
41,896 KB
testcase_15 AC 143 ms
41,604 KB
testcase_16 AC 144 ms
41,452 KB
testcase_17 AC 134 ms
41,404 KB
testcase_18 AC 138 ms
41,276 KB
testcase_19 AC 143 ms
41,600 KB
testcase_20 AC 130 ms
41,244 KB
testcase_21 AC 128 ms
41,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main{
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
//		int []a = new int[N];
//		int []b = new int[N];
//		int []c = new int[N];
		int []x = new int[3 *N];
		for(int i = 0; i < 3 * N; i++) {
			x[i] = scan.nextInt();
		}
		scan.close();
		Arrays.sort(x);
		int temp = x[0];
		int cnt1 = 1;
		int cnt2 = 0;
		int ans = 0;
		for(int i = 1; i < 3 * N; i++) {
			if(temp == x[i]) {
				cnt1 ++;
			}else {
				ans += cnt1 / 2;
				cnt2 += cnt1 % 2;
				temp = x[i];
				cnt1 = 1;
			}
		}
		ans += cnt1 / 2;
		cnt2 += cnt1 % 2;
		ans += cnt2 / 4;
		System.out.println(ans);
	}
}
0