結果

問題 No.140 みんなで旅行
ユーザー eitahoeitaho
提出日時 2015-12-05 23:04:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 452 ms / 5,000 ms
コード長 538 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,088 KB
最終ジャッジ日時 2024-09-14 14:32:03
合計ジャッジ時間 4,007 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 46 ms
11,264 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 29 ms
10,496 KB
testcase_10 AC 30 ms
10,496 KB
testcase_11 AC 452 ms
24,960 KB
testcase_12 AC 41 ms
11,008 KB
testcase_13 AC 33 ms
10,624 KB
testcase_14 AC 444 ms
25,088 KB
testcase_15 AC 443 ms
24,832 KB
testcase_16 AC 183 ms
16,128 KB
testcase_17 AC 98 ms
13,184 KB
testcase_18 AC 346 ms
21,760 KB
testcase_19 AC 378 ms
22,784 KB
testcase_20 AC 82 ms
12,544 KB
testcase_21 AC 31 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Mod = int(1e9) + 7
N = int(input())
C = [[0] * (N + 1) for r in range(N + 1)]
dp = [[0] * (N + 1) for r in range(N + 1)]
dp[0][0] = 1
ans = 0

for r in range(N + 1):
    C[r][0] = C[r][r] = 1
    for c in range(1, r):
        C[r][c] = (C[r - 1][c] + C[r - 1][c - 1]) % Mod
for pair in range(1, N + 1):
    for num in range(1, pair + 1):
        dp[pair][num] = (dp[pair - 1][num - 1] + dp[pair - 1][num] * num) % Mod
        ans = (ans + dp[pair][num] * C[N][pair] *
               pow(num * (num - 1), N - pair, Mod)) % Mod

print(ans)
0