結果

問題 No.29 パワーアップ
ユーザー めうめう🎒めうめう🎒
提出日時 2016-05-09 21:51:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 838 bytes
コンパイル時間 2,234 ms
コンパイル使用メモリ 77,300 KB
実行使用メモリ 41,836 KB
最終ジャッジ日時 2024-10-05 13:15:58
合計ジャッジ時間 6,443 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,336 KB
testcase_01 AC 129 ms
41,276 KB
testcase_02 AC 128 ms
41,396 KB
testcase_03 AC 130 ms
41,276 KB
testcase_04 AC 129 ms
41,020 KB
testcase_05 AC 147 ms
41,432 KB
testcase_06 AC 145 ms
41,548 KB
testcase_07 AC 135 ms
41,672 KB
testcase_08 AC 130 ms
41,316 KB
testcase_09 AC 131 ms
41,584 KB
testcase_10 AC 142 ms
41,836 KB
testcase_11 AC 147 ms
41,748 KB
testcase_12 AC 131 ms
41,440 KB
testcase_13 AC 145 ms
41,544 KB
testcase_14 AC 145 ms
41,356 KB
testcase_15 AC 145 ms
41,268 KB
testcase_16 AC 144 ms
41,584 KB
testcase_17 AC 133 ms
40,900 KB
testcase_18 AC 137 ms
41,728 KB
testcase_19 AC 138 ms
41,536 KB
testcase_20 AC 128 ms
41,296 KB
testcase_21 AC 128 ms
41,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.Queue;
import java.util.Scanner;


public class Main {
	private int n;
	private int[] how;
	
	Main(){
		how = new int[11];
	}
	
	public void setN(int n){
		this.n = n;
	}
	
	public void plusHow(int a,int b,int c){
		this.how[a]++;
		this.how[b]++;
		this.how[c]++;
	}
	
	public int ans(){
		int last = 0;
		int ans = 0;
		for(int i = 0;i < 10;i++){
			ans += how[i] / 2;
			last += how[i] % 2;
		}
		ans += last / 4;
		return ans;
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		Main m = new Main();
		int n = sc.nextInt();
		m.setN(n);
		int a,b,c;
		for(int i = 0;i < n;i++){
			a = sc.nextInt();
			b = sc.nextInt();
			c = sc.nextInt();
			a--;
			b--;
			c--;
			m.plusHow(a, b, c);
		}
		System.out.println(m.ans());
	}
}
0