結果

問題 No.140 みんなで旅行
ユーザー ぴろずぴろず
提出日時 2015-03-08 11:12:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 194 ms / 5,000 ms
コード長 1,164 bytes
コンパイル時間 2,652 ms
コンパイル使用メモリ 77,152 KB
実行使用メモリ 59,140 KB
最終ジャッジ日時 2024-06-24 15:49:25
合計ジャッジ時間 6,527 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,052 KB
testcase_01 AC 135 ms
54,500 KB
testcase_02 AC 138 ms
54,096 KB
testcase_03 AC 133 ms
54,168 KB
testcase_04 AC 131 ms
54,212 KB
testcase_05 AC 131 ms
54,028 KB
testcase_06 AC 138 ms
53,904 KB
testcase_07 AC 135 ms
54,240 KB
testcase_08 AC 132 ms
53,868 KB
testcase_09 AC 135 ms
54,280 KB
testcase_10 AC 132 ms
53,888 KB
testcase_11 AC 189 ms
59,140 KB
testcase_12 AC 142 ms
54,260 KB
testcase_13 AC 136 ms
54,328 KB
testcase_14 AC 188 ms
59,008 KB
testcase_15 AC 191 ms
58,876 KB
testcase_16 AC 156 ms
55,924 KB
testcase_17 AC 149 ms
54,308 KB
testcase_18 AC 194 ms
58,908 KB
testcase_19 AC 187 ms
59,060 KB
testcase_20 AC 145 ms
54,032 KB
testcase_21 AC 134 ms
54,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no140;

import java.util.Scanner;

public class Main {
	static final long MOD = 1_000_000_007;
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long[][] dp = new long[n+1][n+1];
		long[][] c = Mod.combinationArray(n, n, MOD);
		dp[0][0] = 1;
		long ans = 0;
		for(int i=1;i<=n;i++) {
			for(int j=1;j<=i;j++) {
				dp[i][j] = (dp[i-1][j-1] + j * dp[i-1][j] % MOD) % MOD;
				ans = ans + c[n][i] * dp[i][j] % MOD * Mod.pow(j * (j-1) % MOD, n - i, MOD) % MOD;
				if (ans >= MOD) {
					ans -= MOD;
				}
			}
		}
		System.out.println(ans);
	}

}
class Mod {
	public static long[][] combinationArray(int maxN,int maxR,long mod) {
		long[][] c = new long[maxN+1][maxR+1];
		for(int i=0;i<=maxN;i++) {
			c[i][0] = 1;
			c[i][i] = 1;
		}
		for(int i=1;i<=maxN;i++) {
			for(int j=1;j<=i-1;j++) {
				c[i][j] = c[i-1][j-1] + c[i-1][j];
				if (c[i][j] >= mod) {
					c[i][j] -= mod;
				}
			}
		}
		return c;
	}
	public static long pow(long x,long n,long mod) {
		long res = 1;
		while(n > 0) {
			if ((n & 1) > 0) {
				res = (res * x) % mod;
			}
			x = (x * x) % mod;
			n/=2;
		}
		return res;
	}
}
0