結果

問題 No.29 パワーアップ
ユーザー kou6839kou6839
提出日時 2014-11-18 16:31:22
言語 Java
(openjdk 23)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 605 bytes
コンパイル時間 2,080 ms
コンパイル使用メモリ 76,168 KB
実行使用メモリ 54,472 KB
最終ジャッジ日時 2025-01-02 17:02:56
合計ジャッジ時間 5,871 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
54,164 KB
testcase_01 AC 113 ms
54,132 KB
testcase_02 AC 116 ms
54,472 KB
testcase_03 AC 113 ms
54,404 KB
testcase_04 AC 114 ms
54,404 KB
testcase_05 AC 135 ms
54,380 KB
testcase_06 AC 120 ms
54,404 KB
testcase_07 AC 114 ms
54,272 KB
testcase_08 AC 114 ms
54,280 KB
testcase_09 AC 112 ms
54,148 KB
testcase_10 AC 125 ms
54,296 KB
testcase_11 AC 129 ms
54,276 KB
testcase_12 AC 115 ms
54,156 KB
testcase_13 AC 134 ms
54,296 KB
testcase_14 AC 137 ms
54,440 KB
testcase_15 AC 125 ms
54,308 KB
testcase_16 AC 122 ms
54,404 KB
testcase_17 AC 121 ms
54,200 KB
testcase_18 AC 117 ms
54,448 KB
testcase_19 AC 123 ms
54,356 KB
testcase_20 AC 108 ms
54,292 KB
testcase_21 AC 109 ms
41,044 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