結果

問題 No.29 パワーアップ
ユーザー yagi2yagi2
提出日時 2017-04-26 11:42:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 1,050 bytes
コンパイル時間 2,680 ms
コンパイル使用メモリ 89,040 KB
実行使用メモリ 54,480 KB
最終ジャッジ日時 2024-09-13 14:01:14
合計ジャッジ時間 6,503 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,988 KB
testcase_01 AC 130 ms
53,832 KB
testcase_02 AC 131 ms
54,076 KB
testcase_03 AC 135 ms
54,004 KB
testcase_04 AC 131 ms
53,880 KB
testcase_05 AC 140 ms
54,096 KB
testcase_06 AC 142 ms
54,268 KB
testcase_07 AC 139 ms
54,088 KB
testcase_08 AC 136 ms
54,000 KB
testcase_09 AC 120 ms
52,964 KB
testcase_10 AC 144 ms
54,240 KB
testcase_11 AC 146 ms
54,160 KB
testcase_12 AC 136 ms
54,240 KB
testcase_13 AC 143 ms
54,048 KB
testcase_14 AC 143 ms
54,120 KB
testcase_15 AC 142 ms
54,000 KB
testcase_16 AC 142 ms
54,296 KB
testcase_17 AC 142 ms
54,224 KB
testcase_18 AC 143 ms
54,020 KB
testcase_19 AC 142 ms
53,996 KB
testcase_20 AC 134 ms
54,480 KB
testcase_21 AC 132 ms
54,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder.No29;

import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int N = Integer.parseInt(sc.next());

        Map<Integer, Integer> items = new HashMap<>();
        for (int i = 0; i < N * 3; i++) {
            int a = Integer.parseInt(sc.next());

            if (!items.containsKey(a)) items.put(a, 0);
            items.put(a, items.get(a) + 1);
        }

        int[] powerUp = {0};
        items.forEach((integer, integer2) -> {
            if (integer2 >= 2) {
                powerUp[0] += integer2 / 2;
                items.put(integer, integer2 % 2);
            }
        });

        int[] ac = {0};
        items.forEach((integer, integer2) -> {
            if (integer2 == 1) {
                ac[0]++;
            }
            if (ac[0] == 4) {
                powerUp[0]++;
                ac[0] = 0;
            }
        });

        System.out.println(powerUp[0]);
    }
}
0