結果

問題 No.29 パワーアップ
ユーザー tentententen
提出日時 2020-11-10 10:16:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 511 bytes
コンパイル時間 2,045 ms
コンパイル使用メモリ 74,548 KB
実行使用メモリ 42,024 KB
最終ジャッジ日時 2024-07-22 17:18:26
合計ジャッジ時間 5,981 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,700 KB
testcase_01 AC 113 ms
41,256 KB
testcase_02 AC 122 ms
40,948 KB
testcase_03 AC 122 ms
41,708 KB
testcase_04 AC 120 ms
41,392 KB
testcase_05 AC 125 ms
41,716 KB
testcase_06 AC 135 ms
42,024 KB
testcase_07 AC 132 ms
41,480 KB
testcase_08 AC 118 ms
41,452 KB
testcase_09 AC 113 ms
41,168 KB
testcase_10 AC 124 ms
41,892 KB
testcase_11 AC 121 ms
41,832 KB
testcase_12 AC 116 ms
41,700 KB
testcase_13 AC 121 ms
41,556 KB
testcase_14 AC 123 ms
41,564 KB
testcase_15 AC 119 ms
41,676 KB
testcase_16 AC 124 ms
41,756 KB
testcase_17 AC 111 ms
41,420 KB
testcase_18 AC 115 ms
41,152 KB
testcase_19 AC 117 ms
41,264 KB
testcase_20 AC 101 ms
40,320 KB
testcase_21 AC 109 ms
41,584 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[] items = new int[11];
        for (int i = 0; i < n * 3; i++) {
            items[sc.nextInt()]++;
        }
        int ans = 0;
        int count = 0;
        for (int i = 1; i <= 10; i++) {
            ans += items[i] / 2;
            count += items[i] % 2;
        }
        ans += count / 4;
        System.out.println(ans);
    }
}
0