結果

問題 No.29 パワーアップ
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-02-22 15:03:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 5,000 ms
コード長 622 bytes
コンパイル時間 1,989 ms
コンパイル使用メモリ 74,184 KB
実行使用メモリ 54,512 KB
最終ジャッジ日時 2024-09-22 13:03:20
合計ジャッジ時間 5,996 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,424 KB
testcase_01 AC 129 ms
54,088 KB
testcase_02 AC 131 ms
53,968 KB
testcase_03 AC 132 ms
54,028 KB
testcase_04 AC 130 ms
53,932 KB
testcase_05 AC 148 ms
54,512 KB
testcase_06 AC 146 ms
53,980 KB
testcase_07 AC 144 ms
54,084 KB
testcase_08 AC 138 ms
54,248 KB
testcase_09 AC 133 ms
53,988 KB
testcase_10 AC 148 ms
54,196 KB
testcase_11 AC 153 ms
54,220 KB
testcase_12 AC 136 ms
54,184 KB
testcase_13 AC 148 ms
54,136 KB
testcase_14 AC 147 ms
54,396 KB
testcase_15 AC 146 ms
54,144 KB
testcase_16 AC 146 ms
54,204 KB
testcase_17 AC 140 ms
54,012 KB
testcase_18 AC 142 ms
54,360 KB
testcase_19 AC 141 ms
54,108 KB
testcase_20 AC 138 ms
54,084 KB
testcase_21 AC 133 ms
54,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static void main(String[] args) throws Exception {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        int[] num = new int[10];
        int lvUp = 0;
        int itemCnt = 0;
        for(int i=0; i<n*3; i++) {
            int getItem = in.nextInt();
            itemCnt++;
            if(num[getItem-1] == 1) {
                lvUp++;
                num[getItem-1] = 0;
                itemCnt -= 2;
            } else {
                num[getItem-1]++;
            }
        }
        System.out.println(lvUp + (int)itemCnt / 4);
    }
}
0