結果

問題 No.29 パワーアップ
ユーザー bigbear90560bigbear90560
提出日時 2015-09-24 16:08:05
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 906 bytes
コンパイル時間 3,629 ms
コンパイル使用メモリ 76,468 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-07-19 08:59:50
合計ジャッジ時間 6,978 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
39,508 KB
testcase_01 AC 119 ms
41,124 KB
testcase_02 AC 120 ms
40,960 KB
testcase_03 AC 123 ms
41,324 KB
testcase_04 AC 117 ms
41,336 KB
testcase_05 AC 130 ms
41,700 KB
testcase_06 AC 137 ms
41,568 KB
testcase_07 AC 130 ms
41,380 KB
testcase_08 AC 124 ms
40,844 KB
testcase_09 AC 120 ms
41,356 KB
testcase_10 AC 132 ms
41,752 KB
testcase_11 AC 136 ms
41,512 KB
testcase_12 AC 123 ms
41,272 KB
testcase_13 AC 144 ms
41,260 KB
testcase_14 AC 133 ms
41,288 KB
testcase_15 AC 139 ms
43,128 KB
testcase_16 WA -
testcase_17 AC 125 ms
41,468 KB
testcase_18 AC 127 ms
41,700 KB
testcase_19 AC 123 ms
41,124 KB
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;

public class No029_PowerUp {

	public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();	// 戦闘回数
        
        List<Integer> list = new ArrayList<Integer>();
        for (int i=0; i<a*3; i++) {
    		list.add(sc.nextInt());
        }

        Collections.sort(list);
        
        int pairItem = 0;
        int noPairItem = 0;
        
        for (int i=0;i<list.size()-1;i++) {
        	if (list.get(i) == list.get(i+1)) {
        		pairItem++;
        		i++;
        	} else if(list.get(i) != list.get(i+1)) {
        		noPairItem++;
        		if (i == list.size()-1) {
            		noPairItem++;
        		}
        	}
        }
        int result = pairItem + (noPairItem / 4);
        System.out.println(result);
	}

}
0