結果

問題 No.29 パワーアップ
ユーザー lrf141lrf141
提出日時 2016-12-01 14:25:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 5,000 ms
コード長 724 bytes
コンパイル時間 3,438 ms
コンパイル使用メモリ 76,844 KB
実行使用メモリ 42,100 KB
最終ジャッジ日時 2024-05-05 16:38:54
合計ジャッジ時間 7,352 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
39,848 KB
testcase_01 AC 128 ms
41,244 KB
testcase_02 AC 132 ms
41,568 KB
testcase_03 AC 134 ms
41,380 KB
testcase_04 AC 135 ms
41,436 KB
testcase_05 AC 144 ms
41,440 KB
testcase_06 AC 145 ms
41,360 KB
testcase_07 AC 131 ms
41,376 KB
testcase_08 AC 132 ms
41,544 KB
testcase_09 AC 135 ms
41,324 KB
testcase_10 AC 146 ms
41,912 KB
testcase_11 AC 151 ms
41,304 KB
testcase_12 AC 134 ms
41,804 KB
testcase_13 AC 142 ms
41,324 KB
testcase_14 AC 143 ms
41,992 KB
testcase_15 AC 144 ms
42,100 KB
testcase_16 AC 144 ms
41,452 KB
testcase_17 AC 134 ms
41,320 KB
testcase_18 AC 138 ms
41,484 KB
testcase_19 AC 140 ms
41,180 KB
testcase_20 AC 132 ms
41,420 KB
testcase_21 AC 128 ms
41,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class no29{
    public static void main(String... args){
        Scanner scan = new Scanner(System.in);
        int n = scan.nextInt();
        int res = 0,tmp;
        int array[] = new int[10];

        for(int i = 0; i < n; i++){
            for(int j = 0; j < 3; j++){
                tmp = scan.nextInt();
                array[tmp-1]++;
                if(array[tmp-1] == 2){
                    array[tmp-1] = 0;
                    res++;
                }
            }
        }

        tmp = 0;
        for(int i = 0; i < 10; i++)
            tmp += array[i];

        while(4 <= tmp){
            tmp -= 4;
            res++;
        }

        System.out.println(res);

    }
}
0