結果

問題 No.29 パワーアップ
ユーザー abcabc
提出日時 2016-10-21 11:39:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 841 bytes
コンパイル時間 3,538 ms
コンパイル使用メモリ 74,220 KB
実行使用メモリ 41,732 KB
最終ジャッジ日時 2024-05-02 21:18:09
合計ジャッジ時間 6,821 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,416 KB
testcase_01 AC 104 ms
41,128 KB
testcase_02 AC 105 ms
41,272 KB
testcase_03 AC 111 ms
41,148 KB
testcase_04 AC 110 ms
39,864 KB
testcase_05 AC 134 ms
41,404 KB
testcase_06 AC 122 ms
41,264 KB
testcase_07 AC 118 ms
41,056 KB
testcase_08 AC 112 ms
41,064 KB
testcase_09 AC 110 ms
41,140 KB
testcase_10 AC 120 ms
41,140 KB
testcase_11 AC 131 ms
41,468 KB
testcase_12 AC 112 ms
41,336 KB
testcase_13 AC 117 ms
41,616 KB
testcase_14 AC 120 ms
41,732 KB
testcase_15 AC 118 ms
41,612 KB
testcase_16 AC 119 ms
41,344 KB
testcase_17 AC 102 ms
41,212 KB
testcase_18 AC 117 ms
41,292 KB
testcase_19 AC 124 ms
41,372 KB
testcase_20 AC 114 ms
40,948 KB
testcase_21 AC 103 ms
40,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();

        int ItemsTotal[] = new int[10];

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

            int a = sc.nextInt();
            int b = sc.nextInt();
            int c = sc.nextInt();

            ItemsTotal[a - 1]++;
            ItemsTotal[b - 1]++;
            ItemsTotal[c - 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);

        //int maxPowerUp = other / 4;

        System.out.println(maxPowerUp);

    }

}
0