結果

問題 No.29 パワーアップ
ユーザー nCk_cvnCk_cv
提出日時 2016-02-01 20:57:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 5,000 ms
コード長 465 bytes
コンパイル時間 2,133 ms
コンパイル使用メモリ 74,780 KB
実行使用メモリ 41,972 KB
最終ジャッジ日時 2024-09-21 19:52:46
合計ジャッジ時間 6,100 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
39,884 KB
testcase_01 AC 132 ms
41,480 KB
testcase_02 AC 134 ms
41,296 KB
testcase_03 AC 138 ms
41,588 KB
testcase_04 AC 134 ms
41,192 KB
testcase_05 AC 152 ms
41,876 KB
testcase_06 AC 150 ms
41,972 KB
testcase_07 AC 141 ms
41,396 KB
testcase_08 AC 138 ms
41,740 KB
testcase_09 AC 133 ms
41,268 KB
testcase_10 AC 147 ms
41,600 KB
testcase_11 AC 151 ms
41,572 KB
testcase_12 AC 136 ms
41,392 KB
testcase_13 AC 143 ms
41,420 KB
testcase_14 AC 149 ms
41,352 KB
testcase_15 AC 146 ms
41,748 KB
testcase_16 AC 147 ms
41,284 KB
testcase_17 AC 138 ms
41,496 KB
testcase_18 AC 140 ms
41,456 KB
testcase_19 AC 143 ms
41,500 KB
testcase_20 AC 134 ms
41,576 KB
testcase_21 AC 134 ms
41,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;
 
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] sum = new int[10];
		
		for(int i = 0; i < n; i++) {
			for(int j = 0; j < 3; j++) {
				sum[sc.nextInt()-1]++;
			}
		}
		int ans = 0;
		int a = 0;
		for(int i = 0; i < 10; i++) {
			ans += sum[i] / 2;
			a += sum[i] % 2;
		}
		ans += a/4;
		System.out.println(ans);
	}
}
0