結果

問題 No.29 パワーアップ
ユーザー papipenpapipen
提出日時 2017-04-06 19:59:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 411 bytes
コンパイル時間 1,786 ms
コンパイル使用メモリ 74,660 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-07-17 21:31:12
合計ジャッジ時間 5,662 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,276 KB
testcase_01 AC 118 ms
54,124 KB
testcase_02 AC 114 ms
54,140 KB
testcase_03 AC 114 ms
54,088 KB
testcase_04 AC 119 ms
54,048 KB
testcase_05 AC 124 ms
54,184 KB
testcase_06 AC 130 ms
54,092 KB
testcase_07 AC 127 ms
53,836 KB
testcase_08 AC 107 ms
53,100 KB
testcase_09 AC 119 ms
53,760 KB
testcase_10 AC 127 ms
53,996 KB
testcase_11 AC 126 ms
54,080 KB
testcase_12 AC 120 ms
53,992 KB
testcase_13 AC 126 ms
54,292 KB
testcase_14 AC 127 ms
54,000 KB
testcase_15 AC 127 ms
54,152 KB
testcase_16 AC 125 ms
54,188 KB
testcase_17 AC 123 ms
54,188 KB
testcase_18 AC 124 ms
54,012 KB
testcase_19 AC 123 ms
54,280 KB
testcase_20 AC 114 ms
54,092 KB
testcase_21 AC 103 ms
52,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class N029{
	public static void main(String args[]){
		Scanner s = new Scanner(System.in);
		int n = s.nextInt();
		int a[] = new int[10];
		for(int i = 0; i < n * 3; i++){
			int b = s.nextInt();
			a[b - 1]++;
		}
		
		int count = 0 , sum = 0;
		for(int i = 0; i < 10; i++){
			sum += a[i] / 2;
			if(a[i] % 2 == 1){
				count++;
			}
		}
		System.out.println(sum + count / 4);
	}
}
0