結果

問題 No.29 パワーアップ
ユーザー l1267976l1267976
提出日時 2017-03-08 18:41:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 1,411 bytes
コンパイル時間 3,568 ms
コンパイル使用メモリ 77,600 KB
実行使用メモリ 42,064 KB
最終ジャッジ日時 2024-06-23 19:22:20
合計ジャッジ時間 7,667 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,520 KB
testcase_01 AC 124 ms
41,228 KB
testcase_02 AC 116 ms
41,292 KB
testcase_03 AC 131 ms
41,532 KB
testcase_04 AC 115 ms
40,428 KB
testcase_05 AC 140 ms
41,544 KB
testcase_06 AC 136 ms
41,832 KB
testcase_07 AC 134 ms
41,288 KB
testcase_08 AC 132 ms
41,608 KB
testcase_09 AC 129 ms
41,444 KB
testcase_10 AC 142 ms
41,412 KB
testcase_11 AC 145 ms
42,064 KB
testcase_12 AC 127 ms
41,560 KB
testcase_13 AC 137 ms
41,900 KB
testcase_14 AC 142 ms
41,640 KB
testcase_15 AC 140 ms
41,856 KB
testcase_16 AC 137 ms
41,728 KB
testcase_17 AC 131 ms
41,496 KB
testcase_18 AC 137 ms
42,024 KB
testcase_19 AC 132 ms
41,700 KB
testcase_20 AC 115 ms
41,496 KB
testcase_21 AC 128 ms
41,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No29 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();

        int[] items = new int[10];

        for (int i = 0; i < n; i++) {
            int[] gets = new int[3];
            for (int j = 0; j < gets.length; j++) {
                gets[j] = sc.nextInt() - 1;
            }

            for (int j = 0; j < gets.length; j++) {
                items[gets[j]]++;
            }
        }

        int powerUpCnt = 0;

        for (int i = 0; i < items.length; i++) {
            powerUpCnt += items[i] / 2;
            items[i] = items[i] % 2;
        }

        while (canPowerUp(items)) {
            int cnt = 0;

            for (int i = 0; i < items.length; i++) {
                if (items[i] > 0) {
                    cnt++;
                    items[i]--;

                    if (cnt >= 4) {
                        powerUpCnt++;
                        break;
                    }
                }
            }
        }

        System.out.println(powerUpCnt);

        sc.locale();
    }

    private static boolean canPowerUp(int[] items) {
        int cnt = 0;

        for (int val : items) {
            if (val > 0) {
                cnt++;
            }
        }

        if (cnt >= 4) {
            return true;
        } else {
            return false;
        }
    }

}
0