結果
問題 | No.827 総神童数 |
ユーザー | sho_00 |
提出日時 | 2020-04-09 11:49:38 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 468 bytes |
コンパイル時間 | 242 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 17,948 KB |
最終ジャッジ日時 | 2024-07-22 23:05:56 |
合計ジャッジ時間 | 4,732 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
17,948 KB |
testcase_01 | AC | 36 ms
11,008 KB |
testcase_02 | AC | 33 ms
10,880 KB |
testcase_03 | AC | 33 ms
10,752 KB |
testcase_04 | AC | 33 ms
10,880 KB |
testcase_05 | AC | 32 ms
10,752 KB |
testcase_06 | AC | 32 ms
10,880 KB |
testcase_07 | AC | 32 ms
10,880 KB |
testcase_08 | AC | 33 ms
10,880 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
from collections import deque import math n=int(input()) E=[[] for _ in range(n)] for i in range(n-1): a,b=map(int,input().split()) a-=1 b-=1 E[a].append(b) E[b].append(a) depth=[0]*n seen=[0]*n seen[0]=1 stack=deque([0]) while stack: u=stack.pop() for v in E[u]: if seen[v]!=1: seen[v]=1 depth[v]=depth[u]+1 stack.append(v) mod=10**9+7 v=math.factorial(n) ans=0 for i in range(n): ans+=(v//(depth[i]+1)%mod) ans%=mod print(ans)