結果

問題 No.29 パワーアップ
ユーザー SuunnSuunn
提出日時 2018-11-20 05:16:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 5,000 ms
コード長 428 bytes
コンパイル時間 2,307 ms
コンパイル使用メモリ 76,484 KB
実行使用メモリ 41,720 KB
最終ジャッジ日時 2024-06-06 21:05:24
合計ジャッジ時間 6,156 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,472 KB
testcase_01 AC 135 ms
41,356 KB
testcase_02 AC 132 ms
41,196 KB
testcase_03 AC 134 ms
41,136 KB
testcase_04 AC 131 ms
41,720 KB
testcase_05 AC 156 ms
41,448 KB
testcase_06 AC 148 ms
41,480 KB
testcase_07 AC 141 ms
41,592 KB
testcase_08 AC 141 ms
41,104 KB
testcase_09 AC 133 ms
41,132 KB
testcase_10 AC 149 ms
41,368 KB
testcase_11 AC 147 ms
41,472 KB
testcase_12 AC 136 ms
41,448 KB
testcase_13 AC 147 ms
41,352 KB
testcase_14 AC 159 ms
41,652 KB
testcase_15 AC 145 ms
41,192 KB
testcase_16 AC 144 ms
41,208 KB
testcase_17 AC 134 ms
41,276 KB
testcase_18 AC 140 ms
41,316 KB
testcase_19 AC 140 ms
41,252 KB
testcase_20 AC 133 ms
40,828 KB
testcase_21 AC 136 ms
41,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
	

public class Main{
	
	
	public static void main(String args[])throws Exception{
		
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int[] item = new int[11];
		for(int i=0;i<3*N;i++){
			int I = sc.nextInt();
			item[I]++;
		}
		int ans = 0;
		int amari = 0;
		for(int i=1;i<=10;i++){
			ans += item[i]/2;
			amari += item[i]%2;
		}
		ans += amari/4;
		System.out.println(ans);
	}
}
0