結果

問題 No.118 門松列(2)
ユーザー crazybbb3crazybbb3
提出日時 2017-01-31 00:19:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 224 ms / 5,000 ms
コード長 2,201 bytes
コンパイル時間 2,247 ms
コンパイル使用メモリ 88,808 KB
実行使用メモリ 56,668 KB
最終ジャッジ日時 2024-06-06 09:48:17
合計ジャッジ時間 7,500 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
52,172 KB
testcase_01 AC 209 ms
56,232 KB
testcase_02 AC 204 ms
56,224 KB
testcase_03 AC 211 ms
56,668 KB
testcase_04 AC 205 ms
56,364 KB
testcase_05 AC 224 ms
56,384 KB
testcase_06 AC 61 ms
50,572 KB
testcase_07 AC 62 ms
50,308 KB
testcase_08 AC 59 ms
50,692 KB
testcase_09 AC 217 ms
56,372 KB
testcase_10 AC 142 ms
52,888 KB
testcase_11 AC 151 ms
54,988 KB
testcase_12 AC 139 ms
52,792 KB
testcase_13 AC 132 ms
52,380 KB
testcase_14 AC 207 ms
56,320 KB
testcase_15 AC 108 ms
52,348 KB
testcase_16 AC 174 ms
55,364 KB
testcase_17 AC 122 ms
52,624 KB
testcase_18 AC 157 ms
54,628 KB
testcase_19 AC 166 ms
54,792 KB
testcase_20 AC 176 ms
55,512 KB
testcase_21 AC 190 ms
55,888 KB
testcase_22 AC 145 ms
52,872 KB
testcase_23 AC 184 ms
55,792 KB
testcase_24 AC 151 ms
54,744 KB
testcase_25 AC 167 ms
55,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.*;

public class Main {

    void solve() throws IOException {
        int n = ni();
        HashMap<Integer, Integer> map = new HashMap<>();
        for (int i = 0; i < n; i++) {
            int a = ni();
            map.merge(a, 1, (x, y) -> x + y);
        }

        long MOD = 1000000007;

        ArrayList<Integer> list = new ArrayList<>(map.values());
        int m = list.size();
        long ans = 0;
        for (int i = 0; i < m; i++) {
            for (int j = i + 1; j < m; j++) {
                for (int k = j + 1; k < m; k++) {
                    ans = (ans + (long) list.get(i) * list.get(j) * list.get(k)) % MOD;
                }
            }
        }

        out.println(ans);
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    String[] nsa(int n) throws IOException {
        String[] res = new String[n];
        for (int i = 0; i < n; i++) {
            res[i] = ns();
        }
        return res;
    }

    int[] nia(int n) throws IOException {
        int[] res = new int[n];
        for (int i = 0; i < n; i++) {
            res[i] = ni();
        }
        return res;
    }

    long[] nla(int n) throws IOException {
        long[] res = new long[n];
        for (int i = 0; i < n; i++) {
            res[i] = nl();
        }
        return res;
    }

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0