結果

問題 No.29 パワーアップ
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-23 18:27:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 1,024 bytes
コンパイル時間 2,219 ms
コンパイル使用メモリ 73,728 KB
実行使用メモリ 37,032 KB
最終ジャッジ日時 2024-07-22 10:05:07
合計ジャッジ時間 4,207 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,540 KB
testcase_01 AC 53 ms
36,896 KB
testcase_02 AC 52 ms
36,540 KB
testcase_03 AC 53 ms
36,552 KB
testcase_04 AC 54 ms
36,516 KB
testcase_05 AC 53 ms
36,836 KB
testcase_06 AC 52 ms
36,848 KB
testcase_07 AC 53 ms
36,536 KB
testcase_08 AC 56 ms
36,964 KB
testcase_09 AC 53 ms
36,508 KB
testcase_10 AC 56 ms
36,944 KB
testcase_11 AC 56 ms
37,032 KB
testcase_12 AC 53 ms
36,868 KB
testcase_13 AC 54 ms
36,808 KB
testcase_14 AC 56 ms
36,916 KB
testcase_15 AC 54 ms
37,028 KB
testcase_16 AC 55 ms
36,916 KB
testcase_17 AC 53 ms
37,020 KB
testcase_18 AC 55 ms
36,608 KB
testcase_19 AC 56 ms
36,536 KB
testcase_20 AC 53 ms
36,528 KB
testcase_21 AC 54 ms
36,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        int N = Integer.parseInt(reader.readLine());
        int[] items = new int[10];

        String[] line;
        for (int i = 0; i < N; i++) {
            line = reader.readLine().split(" ");
            for (int j = 0; j < 3; j++) {
                items[Integer.parseInt(line[j]) - 1] += 1;
            }
        }

        int powerUpTimes = 0;
        int fourItemsLevelUpCounter = 0;
        for (int i = 0; i < 10; i++) {
            while (items[i] >= 2) {
                items[i] -= 2;
                powerUpTimes += 1;
            }
            if (items[i] == 1) {
                fourItemsLevelUpCounter += 1;
            }
        }

        powerUpTimes += (fourItemsLevelUpCounter / 4);

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