結果

問題 No.29 パワーアップ
ユーザー GrenacheGrenache
提出日時 2015-09-22 23:24:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 596 bytes
コンパイル時間 3,321 ms
コンパイル使用メモリ 75,128 KB
実行使用メモリ 41,904 KB
最終ジャッジ日時 2024-07-19 08:43:01
合計ジャッジ時間 6,645 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,020 KB
testcase_01 AC 121 ms
41,468 KB
testcase_02 AC 121 ms
41,616 KB
testcase_03 AC 124 ms
41,708 KB
testcase_04 AC 127 ms
41,404 KB
testcase_05 AC 134 ms
41,904 KB
testcase_06 AC 132 ms
41,300 KB
testcase_07 AC 131 ms
41,464 KB
testcase_08 AC 126 ms
41,120 KB
testcase_09 AC 117 ms
40,252 KB
testcase_10 AC 134 ms
41,124 KB
testcase_11 AC 146 ms
41,660 KB
testcase_12 AC 114 ms
41,464 KB
testcase_13 AC 135 ms
41,708 KB
testcase_14 AC 143 ms
41,524 KB
testcase_15 AC 136 ms
41,864 KB
testcase_16 AC 133 ms
41,600 KB
testcase_17 AC 129 ms
41,320 KB
testcase_18 AC 135 ms
41,184 KB
testcase_19 AC 131 ms
41,260 KB
testcase_20 AC 124 ms
41,172 KB
testcase_21 AC 109 ms
41,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder29 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        int[] nn = new int[10];
        for (int i = 0; i < n; i++) {
        	for (int j = 0; j < 3; j++) {
        		int a = sc.nextInt() - 1;
        		nn[a]++;
        	}
        }

        int ret = 0;
        int tmp = 0;
        for (int i = 0; i < 10; i++) {
        	ret += nn[i] / 2;
        	tmp += nn[i] % 2;
        }
        ret += tmp / 4;
        
		System.out.println(ret);

		sc.close();
    }
}
0