結果

問題 No.916 Encounter On A Tree
ユーザー 37zigen37zigen
提出日時 2020-03-10 16:41:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 1,226 bytes
コンパイル時間 3,433 ms
コンパイル使用メモリ 77,900 KB
実行使用メモリ 52,844 KB
最終ジャッジ日時 2024-11-15 23:25:17
合計ジャッジ時間 14,151 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,320 KB
testcase_01 AC 141 ms
41,576 KB
testcase_02 AC 138 ms
41,336 KB
testcase_03 AC 151 ms
41,216 KB
testcase_04 AC 142 ms
41,568 KB
testcase_05 AC 144 ms
41,456 KB
testcase_06 AC 134 ms
41,312 KB
testcase_07 AC 147 ms
41,268 KB
testcase_08 AC 147 ms
43,020 KB
testcase_09 AC 143 ms
41,176 KB
testcase_10 AC 139 ms
41,512 KB
testcase_11 AC 140 ms
41,488 KB
testcase_12 AC 142 ms
41,164 KB
testcase_13 AC 147 ms
41,292 KB
testcase_14 AC 139 ms
41,616 KB
testcase_15 AC 145 ms
41,336 KB
testcase_16 AC 142 ms
47,656 KB
testcase_17 AC 150 ms
41,340 KB
testcase_18 AC 139 ms
41,152 KB
testcase_19 AC 146 ms
41,472 KB
testcase_20 AC 139 ms
48,264 KB
testcase_21 AC 148 ms
41,156 KB
testcase_22 AC 138 ms
48,116 KB
testcase_23 AC 149 ms
41,688 KB
testcase_24 AC 136 ms
41,596 KB
testcase_25 AC 148 ms
41,396 KB
testcase_26 AC 135 ms
47,700 KB
testcase_27 AC 143 ms
41,452 KB
testcase_28 AC 138 ms
41,576 KB
testcase_29 AC 144 ms
41,060 KB
testcase_30 AC 139 ms
47,836 KB
testcase_31 AC 137 ms
41,444 KB
testcase_32 AC 135 ms
41,532 KB
testcase_33 AC 140 ms
41,576 KB
testcase_34 AC 144 ms
48,048 KB
testcase_35 AC 154 ms
41,848 KB
testcase_36 AC 153 ms
52,844 KB
testcase_37 AC 151 ms
41,456 KB
testcase_38 AC 146 ms
41,352 KB
testcase_39 AC 138 ms
41,452 KB
testcase_40 AC 150 ms
51,912 KB
testcase_41 AC 138 ms
41,288 KB
testcase_42 AC 139 ms
41,388 KB
testcase_43 AC 138 ms
41,320 KB
testcase_44 AC 136 ms
51,916 KB
testcase_45 AC 142 ms
41,704 KB
testcase_46 AC 137 ms
41,312 KB
testcase_47 AC 138 ms
41,460 KB
testcase_48 AC 138 ms
52,028 KB
testcase_49 AC 138 ms
41,500 KB
testcase_50 AC 137 ms
51,952 KB
testcase_51 AC 137 ms
41,488 KB
testcase_52 AC 140 ms
41,392 KB
testcase_53 AC 139 ms
41,412 KB
testcase_54 AC 139 ms
52,048 KB
testcase_55 AC 137 ms
41,196 KB
testcase_56 AC 140 ms
41,200 KB
testcase_57 AC 136 ms
41,332 KB
testcase_58 AC 138 ms
52,000 KB
testcase_59 AC 139 ms
41,616 KB
testcase_60 AC 143 ms
52,104 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