結果

問題 No.29 パワーアップ
ユーザー tokustokus
提出日時 2021-11-18 23:00:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 75 ms / 5,000 ms
コード長 1,863 bytes
コンパイル時間 4,525 ms
コンパイル使用メモリ 87,420 KB
実行使用メモリ 38,160 KB
最終ジャッジ日時 2024-06-08 13:24:46
合計ジャッジ時間 6,653 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
37,812 KB
testcase_01 AC 57 ms
37,172 KB
testcase_02 AC 57 ms
37,412 KB
testcase_03 AC 58 ms
37,660 KB
testcase_04 AC 58 ms
37,544 KB
testcase_05 AC 62 ms
37,580 KB
testcase_06 AC 60 ms
37,556 KB
testcase_07 AC 58 ms
37,408 KB
testcase_08 AC 60 ms
37,560 KB
testcase_09 AC 57 ms
37,696 KB
testcase_10 AC 75 ms
38,160 KB
testcase_11 AC 61 ms
37,796 KB
testcase_12 AC 59 ms
37,564 KB
testcase_13 AC 61 ms
37,856 KB
testcase_14 AC 62 ms
37,908 KB
testcase_15 AC 63 ms
37,832 KB
testcase_16 AC 59 ms
37,556 KB
testcase_17 AC 61 ms
37,412 KB
testcase_18 AC 61 ms
37,832 KB
testcase_19 AC 58 ms
37,512 KB
testcase_20 AC 57 ms
37,416 KB
testcase_21 AC 61 ms
37,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.UncheckedIOException;
import java.util.Arrays;
import java.util.stream.Stream;

class Main {
    public static void main(String[] args) {
        no29();
    }

// No.29 パワーアップ
    private static void no29() {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        // 敵を倒す回数
        int turn;
        // もらえるアイテム
        int[] itemList;

        try {
            String co = reader.readLine();
            turn = Integer.parseInt(co);

            int[][] items = new int[turn][];

            itemList = new int[turn * 3];

            for (int i = 0, k = 0; i < turn; i++) {
                String line = reader.readLine();
                items[i] = Stream.of(line.split(" ")).mapToInt(Integer::parseInt).toArray();
                for (int j = 0; j < 3; j++) {
                    itemList[k] = items[i][j];
                    k++;
                }
            }
            reader.close();
        } catch (IOException e) {
            throw new UncheckedIOException(e);
        }

        Arrays.sort(itemList);

        // レベルアップ回数
        int count = 0;

        // 重複値と任意の値をカウントする
        for (int i = 0, j = 0; i < itemList.length; i++) {

            if (i == itemList.length - 1) {
                j++;
                count += (j / 4);
                break;
            }

            if (itemList[i] == itemList[i + 1]) {
                count++;
                i++;
                    if (i == itemList.length - 1) {
                    count += (j / 4);
                    break;
                }
            } else {
                j++;
            }
        }

        System.out.println(count);
    }
}
0