結果

問題 No.29 パワーアップ
ユーザー abcabc
提出日時 2016-10-21 11:50:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 844 bytes
コンパイル時間 2,247 ms
コンパイル使用メモリ 74,072 KB
実行使用メモリ 41,652 KB
最終ジャッジ日時 2024-11-23 16:06:06
合計ジャッジ時間 5,430 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
39,972 KB
testcase_01 AC 112 ms
40,556 KB
testcase_02 AC 117 ms
40,968 KB
testcase_03 AC 113 ms
41,216 KB
testcase_04 AC 112 ms
40,924 KB
testcase_05 AC 120 ms
41,204 KB
testcase_06 AC 125 ms
41,252 KB
testcase_07 AC 125 ms
41,280 KB
testcase_08 AC 122 ms
41,060 KB
testcase_09 AC 110 ms
40,752 KB
testcase_10 AC 126 ms
41,352 KB
testcase_11 AC 133 ms
41,180 KB
testcase_12 AC 107 ms
39,972 KB
testcase_13 AC 125 ms
41,652 KB
testcase_14 AC 124 ms
41,404 KB
testcase_15 AC 126 ms
41,596 KB
testcase_16 AC 126 ms
41,340 KB
testcase_17 AC 109 ms
40,484 KB
testcase_18 AC 122 ms
41,088 KB
testcase_19 AC 114 ms
40,612 KB
testcase_20 AC 118 ms
41,184 KB
testcase_21 AC 114 ms
40,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int numEnemys = sc.nextInt();

        int ItemsTotal[] = new int[10];

        for (int i = 0; i < numEnemys; i++) {

            int item1 = sc.nextInt();
            int item2 = sc.nextInt();
            int item3 = sc.nextInt();

            ItemsTotal[item1 - 1]++;
            ItemsTotal[item2 - 1]++;
            ItemsTotal[item3 - 1]++;

        }

        int powerUp = 0;
        int other = 0;

        for (int i = 0; i < 10; i++) {

            if (ItemsTotal[i] >= 2) {
                powerUp += ItemsTotal[i] / 2;
            }

            other += ItemsTotal[i] % 2;

        }

        int maxPowerUp = powerUp + (other / 4);

        System.out.println(maxPowerUp);

    }

}
0