結果

問題 No.1629 Sorting Integers (SUM of M)
ユーザー tentententen
提出日時 2021-08-03 10:47:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 2,177 bytes
コンパイル時間 2,709 ms
コンパイル使用メモリ 77,048 KB
実行使用メモリ 41,328 KB
最終ジャッジ日時 2024-09-16 14:55:20
合計ジャッジ時間 5,773 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,128 KB
testcase_01 AC 52 ms
36,768 KB
testcase_02 AC 52 ms
36,784 KB
testcase_03 AC 52 ms
37,124 KB
testcase_04 AC 136 ms
39,008 KB
testcase_05 AC 82 ms
38,400 KB
testcase_06 AC 86 ms
37,864 KB
testcase_07 AC 167 ms
40,048 KB
testcase_08 AC 141 ms
39,408 KB
testcase_09 AC 156 ms
39,796 KB
testcase_10 AC 142 ms
39,488 KB
testcase_11 AC 116 ms
38,500 KB
testcase_12 AC 145 ms
39,112 KB
testcase_13 AC 156 ms
39,324 KB
testcase_14 AC 127 ms
38,992 KB
testcase_15 AC 160 ms
39,616 KB
testcase_16 AC 157 ms
39,912 KB
testcase_17 AC 228 ms
41,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] counts = new int[10];
        for (int i = 1; i < 10; i++) {
            counts[i] = sc.nextInt();
        }
        long[] factorials = new long[n + 1];
        long[] reverses = new long[n + 1];
        factorials[0] = 1;
        reverses[0] = 1;
        long base = 0;
        for (int i = 1; i <= n; i++) {
            factorials[i] = factorials[i - 1] * i % MOD;
            reverses[i] = powmod(factorials[i], MOD - 2, MOD);
            base *= 10;
            base++;
            base %= MOD;
        }
        base *= factorials[n - 1];
        base %= MOD;
        long ans = 0;
        for (int i = 1; i < 10; i++) {
            if (counts[i] == 0) {
                continue;
            }
            long tmp = base * i % MOD;
            for (int j = 1; j < 10; j++) {
                if (i == j) {
                    tmp *= reverses[counts[j] - 1];
                } else {
                    tmp *= reverses[counts[j]];
                }
                tmp %= MOD;
            }
            ans += tmp;
            ans %= MOD;
        }
        System.out.println(ans);
    }
    
    static long powmod(long x, long p, int m) {
        if (p == 0) {
            return 1;
        } else if (p % 2 == 0) {
            return powmod(x * x % m, p / 2, m);
        } else {
            return powmod(x, p - 1, m) * x % m;
        }
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0