結果

問題 No.29 パワーアップ
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-07 16:08:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 669 bytes
コンパイル時間 1,930 ms
コンパイル使用メモリ 74,528 KB
実行使用メモリ 41,616 KB
最終ジャッジ日時 2024-07-04 10:46:58
合計ジャッジ時間 5,491 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,956 KB
testcase_01 AC 116 ms
40,588 KB
testcase_02 AC 127 ms
40,960 KB
testcase_03 AC 124 ms
41,316 KB
testcase_04 AC 121 ms
41,172 KB
testcase_05 AC 134 ms
41,344 KB
testcase_06 AC 131 ms
41,216 KB
testcase_07 AC 125 ms
40,884 KB
testcase_08 AC 115 ms
40,608 KB
testcase_09 AC 130 ms
40,964 KB
testcase_10 AC 140 ms
41,452 KB
testcase_11 AC 131 ms
41,616 KB
testcase_12 AC 106 ms
39,888 KB
testcase_13 AC 126 ms
40,952 KB
testcase_14 AC 129 ms
41,484 KB
testcase_15 AC 125 ms
41,036 KB
testcase_16 AC 118 ms
40,784 KB
testcase_17 AC 109 ms
40,156 KB
testcase_18 AC 121 ms
41,320 KB
testcase_19 AC 138 ms
41,164 KB
testcase_20 AC 112 ms
39,972 KB
testcase_21 AC 116 ms
40,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int n = koko.nextInt();
        int[] b = new int[n*3];
        int[] item = new int[10];
        for(int i=0; i<n*3; i++){
            b[i] = koko.nextInt();
            item[b[i]-1]++;
        }
        int amari = 0;
        int count = 0;
        int m;
        for(int i=0; i<10;i++){
            m = item[i]%2;
            count = count + ((item[i]-m)/2);
            amari = amari + m;
        }
        int mm = amari%4;
        count = count + ((amari-mm)/4);
        System.out.println(count);
    }
}
0