結果

問題 No.29 パワーアップ
ユーザー kou6839kou6839
提出日時 2014-11-18 16:31:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 155 ms / 5,000 ms
コード長 605 bytes
コンパイル時間 1,887 ms
コンパイル使用メモリ 74,236 KB
実行使用メモリ 54,536 KB
最終ジャッジ日時 2024-06-10 20:02:37
合計ジャッジ時間 5,798 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,100 KB
testcase_01 AC 124 ms
53,888 KB
testcase_02 AC 126 ms
54,196 KB
testcase_03 AC 128 ms
54,092 KB
testcase_04 AC 124 ms
53,880 KB
testcase_05 AC 151 ms
54,536 KB
testcase_06 AC 140 ms
53,816 KB
testcase_07 AC 131 ms
54,220 KB
testcase_08 AC 115 ms
53,028 KB
testcase_09 AC 114 ms
52,872 KB
testcase_10 AC 146 ms
54,052 KB
testcase_11 AC 153 ms
54,100 KB
testcase_12 AC 137 ms
54,124 KB
testcase_13 AC 150 ms
54,160 KB
testcase_14 AC 155 ms
54,036 KB
testcase_15 AC 134 ms
54,204 KB
testcase_16 AC 135 ms
54,244 KB
testcase_17 AC 136 ms
54,016 KB
testcase_18 AC 142 ms
53,768 KB
testcase_19 AC 146 ms
53,988 KB
testcase_20 AC 135 ms
54,160 KB
testcase_21 AC 133 ms
54,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] num = new int[11];
		int ans=0;
		for(int i=0;i<n;i++){
			for(int j=0;j<3;j++){
				int aa = sc.nextInt();
				if(num[aa]==1){
					ans++;
					num[aa]=0;
				}else{
					num[aa]++;
				}		
			}
		}
		int temp=0;
		for(int i=1;i<=10;i++){
			if(num[i]==1) temp++;
		}
		if(temp<4){
			System.out.println(ans);
		}else if(temp<8){
			System.out.println(ans+1);
		}else{
			System.out.println(ans+2);
			
		}
	}
}	
0