結果

問題 No.758 VVVVV
ユーザー 37zigen37zigen
提出日時 2019-01-06 18:24:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,007 ms / 2,000 ms
コード長 1,098 bytes
コンパイル時間 2,194 ms
コンパイル使用メモリ 77,312 KB
実行使用メモリ 69,256 KB
最終ジャッジ日時 2024-10-14 01:56:36
合計ジャッジ時間 17,337 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,844 KB
testcase_01 AC 133 ms
53,824 KB
testcase_02 AC 134 ms
54,016 KB
testcase_03 AC 963 ms
69,008 KB
testcase_04 AC 656 ms
59,608 KB
testcase_05 AC 570 ms
59,240 KB
testcase_06 AC 531 ms
59,184 KB
testcase_07 AC 926 ms
69,100 KB
testcase_08 AC 653 ms
59,688 KB
testcase_09 AC 454 ms
58,816 KB
testcase_10 AC 583 ms
59,392 KB
testcase_11 AC 974 ms
69,088 KB
testcase_12 AC 519 ms
59,012 KB
testcase_13 AC 561 ms
59,028 KB
testcase_14 AC 451 ms
59,092 KB
testcase_15 AC 361 ms
58,864 KB
testcase_16 AC 394 ms
58,888 KB
testcase_17 AC 932 ms
69,256 KB
testcase_18 AC 627 ms
59,288 KB
testcase_19 AC 1,007 ms
69,188 KB
testcase_20 AC 547 ms
59,260 KB
testcase_21 AC 555 ms
59,112 KB
testcase_22 AC 986 ms
68,996 KB
testcase_23 AC 134 ms
54,216 KB
testcase_24 AC 137 ms
53,968 KB
testcase_25 AC 140 ms
53,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main{

    final long mo=(long)1e9+7;
    
    public static void main(String[] args){
	    new Main().run();
    }

    void run(){
    	Scanner sc=new Scanner(System.in);
    	int N=sc.nextInt();
    	int[] deg=new int[N];
    	for(int i=0;i<N-1;++i){
    	    int a=sc.nextInt();
    	    int b=sc.nextInt();
    	    --a;
    	    --b;
    	    ++deg[a];
    	    ++deg[b];
    	}
    
    	if(N==1){
    	    System.out.println(1);
    	    return;
    	}
    	
    	int n=N-1;
    	int m=0;
    	for(int i=1;i<N;++i){
    	    if(deg[i]==1)
    		++m;
    	}
    	System.out.println(narayana(n,m));
    }

    long narayana(long n,long k){
	    return inv(k)*comb(n,k-1)%mo*comb(n-1,k-1)%mo;
    }

    long comb(long n,long k){
    	long ret=1;
    	for(long i=0;i<k;++i){
    	    ret=ret*(n-i)%mo*inv(i+1)%mo;
    	}
    	return ret;
    }

    long inv(long a){
	    return pow(a,mo-2);
    }

    long pow(long a,long n){
    	long ret=1;
    	for(;n>0;n>>=1,a=a*a%mo){
    	    if(n%2==1)ret=ret*a%mo;
    	}
    	return ret;
    }
}
0