結果

問題 No.758 VVVVV
ユーザー 37zigen37zigen
提出日時 2019-01-06 18:20:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,016 bytes
コンパイル時間 2,336 ms
コンパイル使用メモリ 77,108 KB
実行使用メモリ 58,512 KB
最終ジャッジ日時 2024-05-03 03:18:48
合計ジャッジ時間 15,473 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,156 KB
testcase_01 WA -
testcase_02 AC 115 ms
41,288 KB
testcase_03 AC 774 ms
58,164 KB
testcase_04 AC 467 ms
48,364 KB
testcase_05 AC 498 ms
47,992 KB
testcase_06 AC 479 ms
47,888 KB
testcase_07 AC 843 ms
57,976 KB
testcase_08 AC 534 ms
48,236 KB
testcase_09 AC 388 ms
47,912 KB
testcase_10 AC 517 ms
48,348 KB
testcase_11 AC 788 ms
58,008 KB
testcase_12 AC 442 ms
46,436 KB
testcase_13 AC 496 ms
48,020 KB
testcase_14 AC 333 ms
47,880 KB
testcase_15 AC 315 ms
47,652 KB
testcase_16 AC 385 ms
47,984 KB
testcase_17 AC 751 ms
57,876 KB
testcase_18 AC 474 ms
48,380 KB
testcase_19 AC 861 ms
57,960 KB
testcase_20 AC 454 ms
47,092 KB
testcase_21 AC 456 ms
48,240 KB
testcase_22 AC 831 ms
58,512 KB
testcase_23 AC 103 ms
41,092 KB
testcase_24 AC 115 ms
41,084 KB
testcase_25 AC 120 ms
41,364 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];
    	}
    	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