結果

問題 No.29 パワーアップ
ユーザー めうめう🎒めうめう🎒
提出日時 2016-05-09 21:50:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 839 bytes
コンパイル時間 2,250 ms
コンパイル使用メモリ 77,792 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-10-05 13:15:44
合計ジャッジ時間 5,701 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,272 KB
testcase_01 AC 124 ms
54,004 KB
testcase_02 AC 121 ms
53,852 KB
testcase_03 AC 125 ms
54,116 KB
testcase_04 AC 122 ms
53,956 KB
testcase_05 AC 130 ms
54,148 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 115 ms
53,020 KB
testcase_09 WA -
testcase_10 AC 126 ms
53,996 KB
testcase_11 AC 134 ms
54,124 KB
testcase_12 AC 127 ms
54,252 KB
testcase_13 WA -
testcase_14 AC 139 ms
54,272 KB
testcase_15 WA -
testcase_16 AC 129 ms
54,200 KB
testcase_17 AC 106 ms
52,828 KB
testcase_18 AC 120 ms
53,860 KB
testcase_19 AC 128 ms
53,772 KB
testcase_20 AC 123 ms
54,068 KB
testcase_21 AC 120 ms
54,092 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 / 3;
		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