結果

問題 No.29 パワーアップ
ユーザー dazydazy
提出日時 2016-09-08 17:59:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 948 bytes
コンパイル時間 2,835 ms
コンパイル使用メモリ 77,668 KB
実行使用メモリ 54,376 KB
最終ジャッジ日時 2024-04-27 17:59:05
合計ジャッジ時間 6,205 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,688 KB
testcase_01 AC 108 ms
53,672 KB
testcase_02 AC 113 ms
54,020 KB
testcase_03 AC 113 ms
53,896 KB
testcase_04 AC 105 ms
52,720 KB
testcase_05 AC 124 ms
53,720 KB
testcase_06 AC 123 ms
54,240 KB
testcase_07 AC 124 ms
54,196 KB
testcase_08 AC 115 ms
53,668 KB
testcase_09 AC 107 ms
53,684 KB
testcase_10 AC 120 ms
53,928 KB
testcase_11 AC 120 ms
53,892 KB
testcase_12 AC 117 ms
53,916 KB
testcase_13 AC 118 ms
53,720 KB
testcase_14 AC 126 ms
53,912 KB
testcase_15 AC 132 ms
53,932 KB
testcase_16 AC 131 ms
54,376 KB
testcase_17 AC 105 ms
52,532 KB
testcase_18 AC 120 ms
53,824 KB
testcase_19 AC 126 ms
54,044 KB
testcase_20 AC 109 ms
54,260 KB
testcase_21 AC 111 ms
53,776 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