結果

問題 No.29 パワーアップ
ユーザー bigbear90560bigbear90560
提出日時 2015-09-24 16:15:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 982 bytes
コンパイル時間 3,522 ms
コンパイル使用メモリ 76,252 KB
実行使用メモリ 55,948 KB
最終ジャッジ日時 2024-07-19 09:00:03
合計ジャッジ時間 6,387 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
53,884 KB
testcase_01 AC 119 ms
53,948 KB
testcase_02 AC 100 ms
52,280 KB
testcase_03 AC 104 ms
52,776 KB
testcase_04 AC 100 ms
52,916 KB
testcase_05 AC 126 ms
53,788 KB
testcase_06 AC 124 ms
54,156 KB
testcase_07 AC 118 ms
53,800 KB
testcase_08 AC 110 ms
52,880 KB
testcase_09 AC 105 ms
52,780 KB
testcase_10 AC 133 ms
53,788 KB
testcase_11 AC 123 ms
54,084 KB
testcase_12 AC 114 ms
53,792 KB
testcase_13 AC 127 ms
53,744 KB
testcase_14 AC 128 ms
55,948 KB
testcase_15 AC 124 ms
53,952 KB
testcase_16 AC 122 ms
54,304 KB
testcase_17 AC 121 ms
53,936 KB
testcase_18 AC 127 ms
53,964 KB
testcase_19 AC 121 ms
54,040 KB
testcase_20 AC 119 ms
53,948 KB
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++;
        		if (i == list.size()-2) {
            		noPairItem++;
        		}
        	} 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