結果

問題 No.29 パワーアップ
ユーザー tom_tom_tomtom_tom_tom
提出日時 2015-11-07 20:05:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 5,000 ms
コード長 638 bytes
コンパイル時間 3,405 ms
コンパイル使用メモリ 74,580 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-09-13 14:03:41
合計ジャッジ時間 7,339 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,092 KB
testcase_01 AC 132 ms
53,732 KB
testcase_02 AC 133 ms
53,984 KB
testcase_03 AC 138 ms
54,096 KB
testcase_04 AC 135 ms
54,012 KB
testcase_05 AC 148 ms
53,956 KB
testcase_06 AC 146 ms
54,160 KB
testcase_07 AC 140 ms
54,120 KB
testcase_08 AC 137 ms
53,976 KB
testcase_09 AC 136 ms
53,980 KB
testcase_10 AC 147 ms
54,168 KB
testcase_11 AC 160 ms
53,748 KB
testcase_12 AC 133 ms
53,620 KB
testcase_13 AC 145 ms
53,880 KB
testcase_14 AC 147 ms
53,924 KB
testcase_15 AC 146 ms
54,300 KB
testcase_16 AC 144 ms
54,248 KB
testcase_17 AC 138 ms
53,756 KB
testcase_18 AC 141 ms
54,188 KB
testcase_19 AC 140 ms
54,248 KB
testcase_20 AC 133 ms
53,864 KB
testcase_21 AC 121 ms
52,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder;

import java.util.Scanner;

/**
 * http://yukicoder.me/problems/1
 */
public class YukiCoder29 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] items = new int[10];

        for (int i = 0; i < n; i++) {
            for (int j = 0; j < 3; j++) {
                items[sc.nextInt() - 1]++;
            }
        }

        int diffs = 0;
        int num = 0;
        for (int item : items) {
            num += item / 2;
            diffs += item % 2;
        }
        num += diffs / 4;

        System.out.println(num);
    }
}
0