結果

問題 No.29 パワーアップ
ユーザー doyazaki012doyazaki012
提出日時 2015-05-01 18:03:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 502 bytes
コンパイル時間 2,022 ms
コンパイル使用メモリ 73,992 KB
実行使用メモリ 41,928 KB
最終ジャッジ日時 2024-07-05 17:23:23
合計ジャッジ時間 5,569 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,888 KB
testcase_01 AC 95 ms
40,296 KB
testcase_02 AC 105 ms
41,300 KB
testcase_03 AC 108 ms
41,536 KB
testcase_04 AC 106 ms
41,100 KB
testcase_05 AC 116 ms
41,548 KB
testcase_06 AC 124 ms
41,304 KB
testcase_07 AC 112 ms
40,956 KB
testcase_08 AC 99 ms
39,916 KB
testcase_09 AC 105 ms
41,168 KB
testcase_10 AC 117 ms
41,436 KB
testcase_11 AC 116 ms
41,444 KB
testcase_12 AC 106 ms
41,204 KB
testcase_13 AC 115 ms
40,952 KB
testcase_14 AC 117 ms
41,712 KB
testcase_15 AC 113 ms
41,684 KB
testcase_16 AC 116 ms
41,928 KB
testcase_17 AC 111 ms
40,956 KB
testcase_18 AC 122 ms
41,824 KB
testcase_19 AC 114 ms
41,460 KB
testcase_20 AC 99 ms
39,952 KB
testcase_21 AC 109 ms
40,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Yuki29{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);

		int n = stdIn.nextInt();
		int[] count = new int[10];
		int box=0;
		int answer=0;


		for(int i=0;i<n*3;i++){
			int input = stdIn.nextInt();
			if(input==10) input =0;
			
			count[input] += 1;
			if(count[input]==2){
				count[input] -= 2;
				answer += 1;
			}

		}

		for(int  i=0;i<10;i++){
			box+=count[i];
		}

		answer += (int)(box/4);

		System.out.println(answer);
	}
}
0