結果

問題 No.29 パワーアップ
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-03 04:42:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 1,067 bytes
コンパイル時間 3,262 ms
コンパイル使用メモリ 78,480 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-07-04 01:34:00
合計ジャッジ時間 7,073 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,860 KB
testcase_01 AC 125 ms
54,184 KB
testcase_02 AC 127 ms
54,120 KB
testcase_03 AC 126 ms
54,060 KB
testcase_04 AC 129 ms
53,960 KB
testcase_05 AC 143 ms
54,408 KB
testcase_06 AC 140 ms
53,976 KB
testcase_07 AC 138 ms
54,200 KB
testcase_08 AC 133 ms
53,988 KB
testcase_09 AC 126 ms
54,044 KB
testcase_10 AC 140 ms
54,096 KB
testcase_11 AC 147 ms
54,168 KB
testcase_12 AC 133 ms
54,280 KB
testcase_13 AC 139 ms
54,392 KB
testcase_14 AC 139 ms
53,864 KB
testcase_15 AC 138 ms
54,232 KB
testcase_16 AC 140 ms
54,372 KB
testcase_17 AC 132 ms
54,040 KB
testcase_18 AC 139 ms
54,268 KB
testcase_19 AC 135 ms
53,740 KB
testcase_20 AC 128 ms
53,920 KB
testcase_21 AC 124 ms
54,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.29 パワーアップ

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No29 {
    
    static final Scanner sc = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        int n = sc.nextInt();
        int[] a = new int[10];
        for (int i=0; i<n; i++) {
            for (int j=0; j<3; j++) {
                a[sc.nextInt()-1]++;
            }
        }
        int cnt = 0, t = 0;
        for (int i=0; i<10; i++) {
            while (a[i] >= 2) {
                a[i] -= 2;
                cnt++;
            }
            t += a[i];
        }
        cnt += t/4;
        out.println(cnt);
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        sc.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0