結果

問題 No.29 パワーアップ
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-11 04:52:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 5,000 ms
コード長 624 bytes
コンパイル時間 2,021 ms
コンパイル使用メモリ 74,272 KB
実行使用メモリ 54,316 KB
最終ジャッジ日時 2024-11-25 07:44:46
合計ジャッジ時間 6,108 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,936 KB
testcase_01 AC 128 ms
53,944 KB
testcase_02 AC 124 ms
54,264 KB
testcase_03 AC 129 ms
53,872 KB
testcase_04 AC 119 ms
52,960 KB
testcase_05 AC 143 ms
54,316 KB
testcase_06 AC 146 ms
54,160 KB
testcase_07 AC 139 ms
53,796 KB
testcase_08 AC 138 ms
54,176 KB
testcase_09 AC 133 ms
54,220 KB
testcase_10 AC 149 ms
54,180 KB
testcase_11 AC 147 ms
53,864 KB
testcase_12 AC 132 ms
54,072 KB
testcase_13 AC 143 ms
53,972 KB
testcase_14 AC 146 ms
54,124 KB
testcase_15 AC 144 ms
54,192 KB
testcase_16 AC 148 ms
53,920 KB
testcase_17 AC 132 ms
54,084 KB
testcase_18 AC 141 ms
53,680 KB
testcase_19 AC 139 ms
54,108 KB
testcase_20 AC 129 ms
53,800 KB
testcase_21 AC 128 ms
54,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int [] item = new int [10];
        for(int i=0; i<N; i++){
            int a = sc.nextInt();
            item[a-1]+=1;
            int b = sc.nextInt();
            item[b-1]+=1;
            int c = sc.nextInt();
            item[c-1]+=1;
        }
        int c=0;
        int s=0;
        for(int i=0; i<10; i++){
            c = c + item[i]/2 ;
            s = s + item[i]%2 ;
        }
        int r = c + s/4 ;
        System.out.println(r);
    }
}
0