結果

問題 No.29 パワーアップ
ユーザー yuppe19 😺yuppe19 😺
提出日時 2015-04-22 14:18:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 5,000 ms
コード長 1,401 bytes
コンパイル時間 2,714 ms
コンパイル使用メモリ 91,472 KB
実行使用メモリ 41,856 KB
最終ジャッジ日時 2024-07-05 00:13:34
合計ジャッジ時間 7,189 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
41,452 KB
testcase_01 AC 151 ms
41,460 KB
testcase_02 AC 147 ms
41,172 KB
testcase_03 AC 150 ms
41,204 KB
testcase_04 AC 149 ms
41,720 KB
testcase_05 AC 159 ms
41,692 KB
testcase_06 AC 157 ms
41,524 KB
testcase_07 AC 151 ms
41,444 KB
testcase_08 AC 151 ms
41,484 KB
testcase_09 AC 148 ms
41,412 KB
testcase_10 AC 158 ms
41,856 KB
testcase_11 AC 162 ms
41,680 KB
testcase_12 AC 151 ms
41,532 KB
testcase_13 AC 155 ms
41,536 KB
testcase_14 AC 159 ms
41,424 KB
testcase_15 AC 155 ms
41,612 KB
testcase_16 AC 154 ms
41,428 KB
testcase_17 AC 151 ms
41,332 KB
testcase_18 AC 153 ms
41,468 KB
testcase_19 AC 154 ms
41,456 KB
testcase_20 AC 149 ms
41,432 KB
testcase_21 AC 149 ms
41,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.*;

import static java.lang.Math.*;

// (ΦωΦ)<何事もやりすぎはよくない
public class Main {
    private void solve() {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        sc.nextLine();
        List<List<Integer>> lines = IntStream.range(0, n)
                                             .mapToObj(i -> Stream.of(sc.nextLine().split(" "))
                                                             .map(Integer::valueOf)
                                                             .collect(Collectors.toList()))
                                             .collect(Collectors.toList());
        List<Integer> flattened = lines.stream().flatMap(List::stream).collect(Collectors.toList());
        Set<Integer> sett = new HashSet<>(flattened);
        List<Integer> values = sett.stream()
                                   .map(e -> Collections.frequency(flattened, e))
                                   .collect(Collectors.toList());
        long res = values.stream()
                         .map(e -> e/2)
                         .reduce(0, (x, y) -> x + y) +
                   values.stream()
                         .filter(e -> e%2==1)
                         .count() / 4;
        System.out.println(res);
    }

    public static void main(String[] args) {
        new Main().solve();
    }
}
0