結果

問題 No.916 Encounter On A Tree
ユーザー ks2mks2m
提出日時 2019-10-25 22:57:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,236 bytes
コンパイル時間 1,997 ms
コンパイル使用メモリ 76,852 KB
実行使用メモリ 55,560 KB
最終ジャッジ日時 2024-09-13 06:40:31
合計ジャッジ時間 7,091 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,180 KB
testcase_01 AC 54 ms
49,968 KB
testcase_02 AC 53 ms
50,120 KB
testcase_03 AC 74 ms
55,536 KB
testcase_04 AC 54 ms
50,280 KB
testcase_05 WA -
testcase_06 AC 52 ms
50,128 KB
testcase_07 AC 74 ms
55,328 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 54 ms
49,952 KB
testcase_11 AC 53 ms
49,904 KB
testcase_12 AC 52 ms
50,188 KB
testcase_13 AC 75 ms
55,344 KB
testcase_14 AC 53 ms
50,076 KB
testcase_15 AC 76 ms
55,552 KB
testcase_16 AC 52 ms
50,092 KB
testcase_17 WA -
testcase_18 AC 53 ms
50,168 KB
testcase_19 AC 75 ms
55,148 KB
testcase_20 AC 52 ms
50,140 KB
testcase_21 WA -
testcase_22 AC 55 ms
50,024 KB
testcase_23 WA -
testcase_24 AC 53 ms
50,148 KB
testcase_25 AC 73 ms
55,176 KB
testcase_26 AC 55 ms
50,164 KB
testcase_27 AC 67 ms
52,632 KB
testcase_28 AC 53 ms
50,284 KB
testcase_29 WA -
testcase_30 AC 52 ms
50,220 KB
testcase_31 AC 53 ms
49,944 KB
testcase_32 AC 53 ms
49,900 KB
testcase_33 AC 53 ms
49,968 KB
testcase_34 AC 58 ms
49,852 KB
testcase_35 AC 55 ms
50,136 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 54 ms
50,176 KB
testcase_40 WA -
testcase_41 AC 53 ms
49,832 KB
testcase_42 AC 60 ms
50,188 KB
testcase_43 AC 53 ms
50,268 KB
testcase_44 AC 53 ms
49,868 KB
testcase_45 AC 56 ms
50,196 KB
testcase_46 AC 54 ms
50,396 KB
testcase_47 AC 54 ms
49,892 KB
testcase_48 AC 54 ms
50,236 KB
testcase_49 AC 54 ms
49,968 KB
testcase_50 AC 53 ms
49,888 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 55 ms
50,220 KB
testcase_54 AC 53 ms
50,224 KB
testcase_55 AC 54 ms
50,204 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int d = Integer.parseInt(sa[0]);
		int l = Integer.parseInt(sa[1]);
		int r = Integer.parseInt(sa[2]);
		int k = Integer.parseInt(sa[3]);
		br.close();

		int dl = 1;
		for (int i = 1; i <= d; i++) {
			if ((1 << i) > l) {
				dl = i;
				break;
			}
		}
		int dr = 1;
		for (int i = 1; i <= d; i++) {
			if ((1 << i) > r) {
				dr = i;
				break;
			}
		}

		if (dr - dl <= k && k <= (dl + dr - 2) && (dr - dl) % 2 == k % 2) {
			int mod = 1000000007;
			int end = 1 << (d - 1);
			long[] p = new long[end + 1];
			p[0] = 1;
			for (int i = 1; i < p.length; i++) {
				p[i] = p[i - 1] * i % mod;
			}
			int k2 = k - (dr - dl);
			k2 /= 2;
			long ans = 1;
			for (int i = 0; i < d; i++) {
				if (dl > 1 && i + 1 == dr) {
					ans *= 1 << i;
					ans %= mod;
					ans *= 1 << (k2 - 1);
					ans %= mod;
					ans *= p[(1 << i) - 2];
				} else {
					ans *= p[1 << i];
				}
				ans %= mod;
			}
			System.out.println(ans);
		} else {
			System.out.println(0);
		}
	}
}
0