結果

問題 No.29 パワーアップ
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-07-10 17:24:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 163 ms / 5,000 ms
コード長 571 bytes
コンパイル時間 3,763 ms
コンパイル使用メモリ 75,832 KB
実行使用メモリ 54,200 KB
最終ジャッジ日時 2024-10-13 10:25:57
合計ジャッジ時間 7,337 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,772 KB
testcase_01 AC 133 ms
53,908 KB
testcase_02 AC 130 ms
53,700 KB
testcase_03 AC 129 ms
53,740 KB
testcase_04 AC 127 ms
53,984 KB
testcase_05 AC 136 ms
53,864 KB
testcase_06 AC 139 ms
54,056 KB
testcase_07 AC 130 ms
53,968 KB
testcase_08 AC 125 ms
53,856 KB
testcase_09 AC 153 ms
54,200 KB
testcase_10 AC 163 ms
53,812 KB
testcase_11 AC 161 ms
54,028 KB
testcase_12 AC 115 ms
53,964 KB
testcase_13 AC 132 ms
54,080 KB
testcase_14 AC 136 ms
53,932 KB
testcase_15 AC 136 ms
54,164 KB
testcase_16 AC 144 ms
53,988 KB
testcase_17 AC 124 ms
53,600 KB
testcase_18 AC 128 ms
53,692 KB
testcase_19 AC 133 ms
54,148 KB
testcase_20 AC 121 ms
53,812 KB
testcase_21 AC 122 ms
53,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class No_29v2 {
public static void main(String[] args) {
	int[] item = new int[11];
	Scanner sc = new Scanner(System.in);
	int N = sc.nextInt() * 3;
	for(int i = 0; i < N; i++){
		item[sc.nextInt()]++;
	}
	int C = 0;
	for(int i = 1; i <= 10; i++){
		if(item[i] >= 2){
			while(item[i] >= 2){
				item[i] -= 2;
				C++;
			}
		}
	}
	int PUC = 0;//Power UP Counting
	for(int i = 1; i <= 10; i++){
		if(item[i] != 0){
			item[i] -= 1;
			PUC++;
		}
		if(PUC == 4){
			PUC = 0;
			C++;
		}
	}
	System.out.println(C);
}
}
0