結果

問題 No.29 パワーアップ
ユーザー YOSHIYOSHI
提出日時 2021-02-17 23:37:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 888 bytes
コンパイル時間 4,209 ms
コンパイル使用メモリ 83,100 KB
実行使用メモリ 41,428 KB
最終ジャッジ日時 2024-09-14 08:21:47
合計ジャッジ時間 7,960 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,288 KB
testcase_01 AC 137 ms
41,248 KB
testcase_02 AC 134 ms
40,908 KB
testcase_03 AC 138 ms
41,044 KB
testcase_04 AC 137 ms
41,116 KB
testcase_05 AC 145 ms
41,328 KB
testcase_06 AC 143 ms
41,048 KB
testcase_07 AC 136 ms
41,352 KB
testcase_08 AC 138 ms
41,032 KB
testcase_09 AC 132 ms
41,312 KB
testcase_10 AC 145 ms
41,428 KB
testcase_11 AC 146 ms
41,332 KB
testcase_12 AC 137 ms
41,044 KB
testcase_13 AC 130 ms
40,136 KB
testcase_14 AC 145 ms
41,360 KB
testcase_15 AC 143 ms
41,080 KB
testcase_16 AC 143 ms
41,120 KB
testcase_17 AC 139 ms
41,416 KB
testcase_18 AC 143 ms
41,076 KB
testcase_19 AC 144 ms
41,392 KB
testcase_20 AC 133 ms
41,164 KB
testcase_21 AC 135 ms
41,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Scanner;
import java.util.stream.Stream;

public class No00000029_Main {

	public static void main(String[] args) {

		Scanner scan = new Scanner(System.in);

		Map<Integer, Integer> cntMap = new HashMap<Integer, Integer>();


		int n = Integer.parseInt(scan.nextLine());
		for(int i = 0; i < n; i++) {
			int[] arr = Stream.of(scan.nextLine().split(" ")).mapToInt(Integer::parseInt).toArray();
			for(int num : arr) {
				if(cntMap.containsKey(num)) {
					cntMap.put(num, cntMap.get(num) + 1);
				} else {
					cntMap.put(num, 1);
				}
			}
		}

		int sameCnt = 0;
		int anyCnt = 0;
		for(Entry<Integer, Integer> entry : cntMap.entrySet()) {
			int cnt = entry.getValue();
			sameCnt += cnt / 2;
			anyCnt += cnt % 2;
		}

		System.out.println(sameCnt + anyCnt / 4);

		scan.close();

	}

}
0