結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,532 KB
testcase_01 WA -
testcase_02 AC 115 ms
40,924 KB
testcase_03 AC 897 ms
58,252 KB
testcase_04 AC 580 ms
48,336 KB
testcase_05 AC 522 ms
48,296 KB
testcase_06 AC 513 ms
48,148 KB
testcase_07 AC 877 ms
58,112 KB
testcase_08 AC 577 ms
48,344 KB
testcase_09 AC 424 ms
48,200 KB
testcase_10 AC 583 ms
47,992 KB
testcase_11 AC 898 ms
58,460 KB
testcase_12 AC 494 ms
48,136 KB
testcase_13 AC 550 ms
48,680 KB
testcase_14 AC 443 ms
47,736 KB
testcase_15 AC 353 ms
47,952 KB
testcase_16 AC 398 ms
47,888 KB
testcase_17 AC 837 ms
57,996 KB
testcase_18 AC 578 ms
48,264 KB
testcase_19 AC 853 ms
58,280 KB
testcase_20 AC 518 ms
48,088 KB
testcase_21 AC 496 ms
48,276 KB
testcase_22 AC 907 ms
58,308 KB
testcase_23 AC 124 ms
41,028 KB
testcase_24 AC 128 ms
41,388 KB
testcase_25 AC 132 ms
41,656 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