結果

問題 No.118 門松列(2)
ユーザー tentententen
提出日時 2020-11-17 20:03:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 625 ms / 5,000 ms
コード長 1,022 bytes
コンパイル時間 2,243 ms
コンパイル使用メモリ 78,136 KB
実行使用メモリ 59,524 KB
最終ジャッジ日時 2024-07-23 08:26:42
合計ジャッジ時間 14,297 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 220 ms
57,608 KB
testcase_01 AC 625 ms
59,448 KB
testcase_02 AC 591 ms
59,504 KB
testcase_03 AC 587 ms
59,388 KB
testcase_04 AC 582 ms
59,360 KB
testcase_05 AC 577 ms
59,404 KB
testcase_06 AC 127 ms
54,028 KB
testcase_07 AC 128 ms
54,356 KB
testcase_08 AC 130 ms
53,996 KB
testcase_09 AC 515 ms
59,136 KB
testcase_10 AC 299 ms
59,076 KB
testcase_11 AC 348 ms
59,244 KB
testcase_12 AC 264 ms
58,264 KB
testcase_13 AC 240 ms
57,660 KB
testcase_14 AC 556 ms
59,288 KB
testcase_15 AC 202 ms
56,420 KB
testcase_16 AC 475 ms
59,280 KB
testcase_17 AC 240 ms
57,740 KB
testcase_18 AC 345 ms
58,936 KB
testcase_19 AC 428 ms
59,452 KB
testcase_20 AC 453 ms
59,252 KB
testcase_21 AC 545 ms
59,324 KB
testcase_22 AC 304 ms
58,756 KB
testcase_23 AC 518 ms
59,524 KB
testcase_24 AC 350 ms
59,252 KB
testcase_25 AC 442 ms
59,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        HashMap<Integer, Integer> map = new HashMap<>();
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            map.put(x, map.getOrDefault(x, 0) + 1);
        }
        long[] comb3 = new long[n + 1];
        long[] comb2 = new long[n + 1];
        for (int i = 3; i <= n; i++) {
            comb3[i] = 1;
            for (long j = 0; j < 3; j++) {
                comb3[i] *= i - j;
            }
            comb3[i] /= 6;
            comb2[i] = 1;
            for (long j = 0; j < 2; j++) {
                comb2[i] *= i - j;
            }
            comb2[i] /= 2;
        }
        comb2[2] = 1;
        long ans = comb3[n];
        for (int x : map.values()) {
            ans -= comb3[x];
            ans -= comb2[x] * (n - x);
        }
        System.out.println(ans % MOD);
    }
}
0