結果

問題 No.29 パワーアップ
ユーザー k_kadorak_kadora
提出日時 2015-05-19 03:46:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 497 bytes
コンパイル時間 3,134 ms
コンパイル使用メモリ 75,144 KB
実行使用メモリ 54,208 KB
最終ジャッジ日時 2024-07-06 05:42:40
合計ジャッジ時間 6,323 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,744 KB
testcase_01 AC 106 ms
52,932 KB
testcase_02 AC 104 ms
52,888 KB
testcase_03 AC 114 ms
54,080 KB
testcase_04 AC 119 ms
54,012 KB
testcase_05 AC 135 ms
53,916 KB
testcase_06 AC 130 ms
54,056 KB
testcase_07 AC 127 ms
54,068 KB
testcase_08 AC 119 ms
53,952 KB
testcase_09 AC 115 ms
53,928 KB
testcase_10 AC 128 ms
54,096 KB
testcase_11 AC 124 ms
53,820 KB
testcase_12 AC 118 ms
54,052 KB
testcase_13 AC 123 ms
54,208 KB
testcase_14 AC 132 ms
54,064 KB
testcase_15 AC 131 ms
54,168 KB
testcase_16 AC 123 ms
53,984 KB
testcase_17 AC 105 ms
52,944 KB
testcase_18 AC 125 ms
53,852 KB
testcase_19 AC 123 ms
53,844 KB
testcase_20 AC 120 ms
54,072 KB
testcase_21 AC 115 ms
53,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Powerup{
	public static void main(String[] arg){
		int[] item = {0,0,0,0,0,0,0,0,0,0};
		int n,m,res = 0,count = 0;
		Scanner sc = new Scanner(System.in);
		n = sc.nextInt();
		for(int i = 0;i<n;i++){
			for(int j = 0;j<3;j++){
				m = sc.nextInt();
				item[m-1]=item[m-1]+1;
			}
		}
		for(int i = 0;i<10;i++){
			while(item[i]>1){
				item[i] = item[i]-2;
				res++;
			}
			if(item[i] == 1)count++;
		}
		res = res + (count /4);
		System.out.println(res);
	}
}
0