結果

問題 No.29 パワーアップ
ユーザー SagTokiSagToki
提出日時 2018-05-10 11:54:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 987 bytes
コンパイル時間 3,279 ms
コンパイル使用メモリ 74,948 KB
実行使用メモリ 41,752 KB
最終ジャッジ日時 2024-06-28 02:56:28
合計ジャッジ時間 7,160 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,156 KB
testcase_01 AC 132 ms
40,996 KB
testcase_02 AC 129 ms
41,012 KB
testcase_03 AC 131 ms
41,300 KB
testcase_04 AC 128 ms
41,304 KB
testcase_05 AC 144 ms
41,684 KB
testcase_06 AC 144 ms
41,552 KB
testcase_07 AC 139 ms
40,988 KB
testcase_08 AC 132 ms
41,456 KB
testcase_09 AC 127 ms
41,036 KB
testcase_10 AC 147 ms
41,676 KB
testcase_11 AC 144 ms
41,416 KB
testcase_12 AC 119 ms
40,172 KB
testcase_13 AC 142 ms
41,128 KB
testcase_14 AC 146 ms
41,752 KB
testcase_15 AC 137 ms
41,208 KB
testcase_16 AC 139 ms
41,692 KB
testcase_17 AC 133 ms
41,464 KB
testcase_18 AC 140 ms
41,432 KB
testcase_19 AC 143 ms
41,232 KB
testcase_20 AC 118 ms
40,048 KB
testcase_21 AC 127 ms
41,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class PowerUp {
    public static void main(String[] args){
        Scanner scanner = new Scanner(System.in);
        try{
            int[] Item = new int[10];
            int Power = 0;
            int Amari = 0;
            int Number = scanner.nextInt();
            int[] Bag = new int[Number*3];
            
            for(int i = 0 ; i < Number*3 ; i++){
                Item[scanner.nextInt() - 1] += 1;
            }
 
            //数字が重複するペアを抽出する
            for(int j = 0 ; j < Item.length ; j++){  
                Power += Item[j]/2;
                Amari += Item[j]%2;
            }
            Power += Amari / 4;
                    
            System.out.println(Power);
        
        }catch(InputMismatchException e){
            System.out.println("数字を入力してください。");
        }catch(Exception E){
            System.out.println("予期せぬエラーです。");
        }
    }   
}
0