結果

問題 No.29 パワーアップ
ユーザー dazydazy
提出日時 2016-09-08 17:59:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 5,000 ms
コード長 948 bytes
コンパイル時間 3,756 ms
コンパイル使用メモリ 77,364 KB
実行使用メモリ 52,272 KB
最終ジャッジ日時 2024-11-15 22:19:27
合計ジャッジ時間 7,690 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
51,976 KB
testcase_01 AC 137 ms
51,960 KB
testcase_02 AC 136 ms
51,852 KB
testcase_03 AC 139 ms
51,976 KB
testcase_04 AC 137 ms
51,916 KB
testcase_05 AC 152 ms
51,960 KB
testcase_06 AC 150 ms
51,928 KB
testcase_07 AC 143 ms
52,264 KB
testcase_08 AC 140 ms
51,968 KB
testcase_09 AC 137 ms
52,096 KB
testcase_10 AC 150 ms
51,940 KB
testcase_11 AC 150 ms
52,032 KB
testcase_12 AC 136 ms
51,608 KB
testcase_13 AC 148 ms
52,272 KB
testcase_14 AC 150 ms
51,948 KB
testcase_15 AC 146 ms
51,992 KB
testcase_16 AC 152 ms
51,716 KB
testcase_17 AC 137 ms
52,096 KB
testcase_18 AC 141 ms
52,236 KB
testcase_19 AC 141 ms
51,684 KB
testcase_20 AC 135 ms
52,036 KB
testcase_21 AC 135 ms
51,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        if (N < 1||N > 100) System.exit(1);
        int a, b, c;
        int[] item = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0};

        for (int i = 0; i < N; i++) {
            a = scan.nextInt();
            b = scan.nextInt();
            c = scan.nextInt();
            if (!match(a,b,c)) System.exit(1);
            item[a-1]++; item[b-1]++; item[c-1]++;
        }

        int ev = 0;
        int left = 0;
        for (int i = 0; i < 10; i++) {
            if (item[i] > 1) {
                ev += item[i]/2;
            }
            left += item[i]%2;
        }
        ev += left/4;

        System.out.println(ev);
    }

    public static boolean match (int... args) {
        for (int i : args) {
            if (i < 1||i > 10) return false;
        }
        return true;
    }
}
0