結果

問題 No.29 パワーアップ
ユーザー 🐧しゅんチャマ🌸🐧しゅんチャマ🌸
提出日時 2023-09-21 21:53:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 463 bytes
コンパイル時間 2,154 ms
コンパイル使用メモリ 74,428 KB
実行使用メモリ 41,924 KB
最終ジャッジ日時 2024-07-07 15:06:06
合計ジャッジ時間 4,991 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
40,136 KB
testcase_01 AC 109 ms
41,252 KB
testcase_02 AC 97 ms
39,876 KB
testcase_03 AC 114 ms
41,296 KB
testcase_04 AC 111 ms
41,432 KB
testcase_05 AC 131 ms
41,544 KB
testcase_06 AC 121 ms
41,324 KB
testcase_07 AC 116 ms
41,324 KB
testcase_08 AC 97 ms
39,512 KB
testcase_09 AC 98 ms
39,996 KB
testcase_10 AC 125 ms
41,636 KB
testcase_11 AC 127 ms
41,892 KB
testcase_12 AC 99 ms
40,068 KB
testcase_13 AC 120 ms
41,436 KB
testcase_14 AC 123 ms
41,560 KB
testcase_15 AC 116 ms
41,560 KB
testcase_16 AC 117 ms
41,324 KB
testcase_17 AC 111 ms
41,088 KB
testcase_18 AC 127 ms
41,676 KB
testcase_19 AC 125 ms
41,924 KB
testcase_20 AC 100 ms
40,004 KB
testcase_21 AC 98 ms
40,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Y29{
    public static void main(String args[]){
        Scanner sc=new Scanner(System.in);
        int n=sc.nextInt();
        int[] item=new int[11];
        for(int i=0;i<n*3;i++){
            item[sc.nextInt()]++;
        }
        int count=0;
        int ans=0;
        for(int i=1;i<=10;i++){
            ans+=item[i]/2;
            count+=item[i]%2;
        }
        ans+=count/4;
        System.out.println(ans);
    }
}
0