結果

問題 No.29 パワーアップ
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-07-10 17:15:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 571 bytes
コンパイル時間 3,126 ms
コンパイル使用メモリ 74,768 KB
実行使用メモリ 54,256 KB
最終ジャッジ日時 2024-10-13 10:25:49
合計ジャッジ時間 6,995 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,788 KB
testcase_01 AC 123 ms
54,180 KB
testcase_02 AC 121 ms
53,832 KB
testcase_03 AC 125 ms
54,104 KB
testcase_04 AC 126 ms
54,052 KB
testcase_05 AC 136 ms
53,980 KB
testcase_06 AC 134 ms
53,952 KB
testcase_07 AC 132 ms
53,880 KB
testcase_08 AC 113 ms
53,868 KB
testcase_09 AC 126 ms
53,784 KB
testcase_10 AC 136 ms
53,880 KB
testcase_11 AC 147 ms
54,140 KB
testcase_12 AC 124 ms
54,004 KB
testcase_13 AC 130 ms
53,860 KB
testcase_14 AC 147 ms
54,040 KB
testcase_15 AC 136 ms
53,840 KB
testcase_16 WA -
testcase_17 AC 126 ms
53,888 KB
testcase_18 AC 132 ms
54,040 KB
testcase_19 AC 135 ms
53,652 KB
testcase_20 AC 122 ms
54,256 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

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(PUC == 4){
			PUC = 0;
			C++;
		}
		if(item[i] >= 1){
			item[i] -= 1;
			PUC++;
		}
	}
	System.out.println(C);
}
}
0