結果

問題 No.916 Encounter On A Tree
ユーザー 37zigen37zigen
提出日時 2020-03-10 16:41:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 1,226 bytes
コンパイル時間 2,363 ms
コンパイル使用メモリ 77,604 KB
実行使用メモリ 54,076 KB
最終ジャッジ日時 2024-04-27 18:41:44
合計ジャッジ時間 9,912 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
53,536 KB
testcase_01 AC 97 ms
52,764 KB
testcase_02 AC 107 ms
54,076 KB
testcase_03 AC 112 ms
41,032 KB
testcase_04 AC 110 ms
40,868 KB
testcase_05 AC 114 ms
41,128 KB
testcase_06 AC 95 ms
40,204 KB
testcase_07 AC 109 ms
40,800 KB
testcase_08 AC 102 ms
39,820 KB
testcase_09 AC 94 ms
39,844 KB
testcase_10 AC 103 ms
40,776 KB
testcase_11 AC 103 ms
41,004 KB
testcase_12 AC 108 ms
41,020 KB
testcase_13 AC 111 ms
40,688 KB
testcase_14 AC 105 ms
40,792 KB
testcase_15 AC 113 ms
41,236 KB
testcase_16 AC 94 ms
39,924 KB
testcase_17 AC 111 ms
41,196 KB
testcase_18 AC 93 ms
39,632 KB
testcase_19 AC 112 ms
41,132 KB
testcase_20 AC 112 ms
40,952 KB
testcase_21 AC 123 ms
41,236 KB
testcase_22 AC 102 ms
40,632 KB
testcase_23 AC 112 ms
41,136 KB
testcase_24 AC 107 ms
40,784 KB
testcase_25 AC 114 ms
40,460 KB
testcase_26 AC 118 ms
41,100 KB
testcase_27 AC 109 ms
40,804 KB
testcase_28 AC 109 ms
40,820 KB
testcase_29 AC 121 ms
40,880 KB
testcase_30 AC 103 ms
41,064 KB
testcase_31 AC 97 ms
40,048 KB
testcase_32 AC 106 ms
40,748 KB
testcase_33 AC 100 ms
41,020 KB
testcase_34 AC 95 ms
39,936 KB
testcase_35 AC 109 ms
40,704 KB
testcase_36 AC 119 ms
41,200 KB
testcase_37 AC 103 ms
39,492 KB
testcase_38 AC 108 ms
40,580 KB
testcase_39 AC 97 ms
40,024 KB
testcase_40 AC 113 ms
41,252 KB
testcase_41 AC 107 ms
40,992 KB
testcase_42 AC 112 ms
41,064 KB
testcase_43 AC 100 ms
41,148 KB
testcase_44 AC 97 ms
39,828 KB
testcase_45 AC 103 ms
40,064 KB
testcase_46 AC 108 ms
40,888 KB
testcase_47 AC 110 ms
41,312 KB
testcase_48 AC 104 ms
40,756 KB
testcase_49 AC 95 ms
40,080 KB
testcase_50 AC 105 ms
40,724 KB
testcase_51 AC 101 ms
40,812 KB
testcase_52 AC 95 ms
39,968 KB
testcase_53 AC 106 ms
41,028 KB
testcase_54 AC 99 ms
40,160 KB
testcase_55 AC 102 ms
40,932 KB
testcase_56 AC 104 ms
41,324 KB
testcase_57 AC 101 ms
40,948 KB
testcase_58 AC 95 ms
40,048 KB
testcase_59 AC 103 ms
40,748 KB
testcase_60 AC 105 ms
41,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	final long M=(long)1e9+7;
	
	long factorial(long n) {
		long ret=1;
		for(int i=1;i<=n;++i)ret=ret*i%M;
		return ret;
	}
	
	long pow(long a,long n) {
		return n==0?1:((n%2==1?a:1)*pow(a*a%M,n/2))%M;
	}
	
	long inv(long a) {
		return pow(a,M-2);
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int d=sc.nextInt();
		int l=sc.nextInt();
		int r=sc.nextInt();
		int depth_left=Integer.numberOfTrailingZeros(Integer.highestOneBit(l))+1;
		int depth_right=Integer.numberOfTrailingZeros(Integer.highestOneBit(r))+1;
		int k=sc.nextInt();
		int diff=depth_right-depth_left;
		if(diff>k||(k-diff)%2==1||(k-diff)>(depth_left-1)*2) {
			System.out.println(0);
			return;
		}
		long ans=1;
		for(int i=1;i<=d;++i) {
			ans=ans*factorial(1<<(i-1))%M;
		}
		long w=1L<<(depth_left-1);
		if(depth_left!=depth_right) {
			ans=ans*inv(w)%M*((k-diff)==0?1:(1L<<((k-diff)/2-1)))%M;
		}else {
			ans=ans*inv(w-1)%M*((k-diff)==0?1:(1L<<((k-diff)/2-1)))%M;
		}
		System.out.println(ans);
	}
	
	void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));}
}


0