結果

問題 No.916 Encounter On A Tree
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-05-03 18:32:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 673 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 82,700 KB
実行使用メモリ 67,828 KB
最終ジャッジ日時 2024-07-02 14:56:11
合計ジャッジ時間 4,296 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,372 KB
testcase_01 AC 36 ms
53,620 KB
testcase_02 AC 51 ms
66,284 KB
testcase_03 AC 53 ms
66,808 KB
testcase_04 AC 51 ms
67,516 KB
testcase_05 AC 51 ms
66,716 KB
testcase_06 AC 46 ms
66,216 KB
testcase_07 AC 47 ms
66,312 KB
testcase_08 AC 41 ms
59,624 KB
testcase_09 AC 40 ms
60,372 KB
testcase_10 AC 33 ms
52,452 KB
testcase_11 AC 32 ms
52,528 KB
testcase_12 AC 45 ms
67,372 KB
testcase_13 AC 49 ms
67,444 KB
testcase_14 AC 49 ms
66,100 KB
testcase_15 AC 48 ms
67,464 KB
testcase_16 AC 41 ms
60,848 KB
testcase_17 AC 47 ms
66,584 KB
testcase_18 AC 35 ms
52,128 KB
testcase_19 AC 48 ms
67,424 KB
testcase_20 AC 46 ms
66,848 KB
testcase_21 AC 46 ms
66,316 KB
testcase_22 AC 45 ms
66,872 KB
testcase_23 AC 47 ms
66,604 KB
testcase_24 AC 46 ms
67,172 KB
testcase_25 AC 45 ms
66,712 KB
testcase_26 AC 42 ms
61,932 KB
testcase_27 AC 42 ms
62,868 KB
testcase_28 AC 38 ms
60,268 KB
testcase_29 AC 45 ms
66,072 KB
testcase_30 AC 44 ms
66,156 KB
testcase_31 AC 45 ms
66,492 KB
testcase_32 AC 46 ms
66,344 KB
testcase_33 AC 43 ms
61,832 KB
testcase_34 AC 40 ms
60,852 KB
testcase_35 AC 38 ms
60,148 KB
testcase_36 AC 47 ms
67,828 KB
testcase_37 AC 46 ms
66,916 KB
testcase_38 AC 40 ms
60,452 KB
testcase_39 AC 46 ms
66,224 KB
testcase_40 AC 46 ms
66,972 KB
testcase_41 AC 33 ms
52,704 KB
testcase_42 AC 31 ms
52,736 KB
testcase_43 AC 34 ms
52,568 KB
testcase_44 AC 34 ms
52,196 KB
testcase_45 AC 38 ms
60,140 KB
testcase_46 AC 33 ms
52,132 KB
testcase_47 AC 33 ms
52,212 KB
testcase_48 AC 33 ms
52,000 KB
testcase_49 AC 32 ms
52,732 KB
testcase_50 AC 33 ms
52,760 KB
testcase_51 AC 33 ms
52,700 KB
testcase_52 AC 34 ms
52,404 KB
testcase_53 AC 32 ms
53,352 KB
testcase_54 AC 32 ms
52,572 KB
testcase_55 AC 33 ms
53,456 KB
testcase_56 AC 35 ms
58,044 KB
testcase_57 AC 34 ms
58,784 KB
testcase_58 AC 38 ms
57,908 KB
testcase_59 AC 39 ms
59,168 KB
testcase_60 AC 39 ms
58,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d,l,r,k = map(int,input().split())
mod = 10**9+7
ans = 0
depl = len(bin(l))-3
depr = len(bin(r))-3

fact = [1]*((1<<d)+1)
for i in range(2,(1<<d)+1):
    fact[i] = fact[i-1]*i%mod


ans = 0

for i in range(d+1):
    p = depl-i
    if p < 0:
        continue

    dif = k-i

    if dif < 0 or dif != depr-p:
        continue

    base = 1<<depl
    if i:
        base *= ((1<<depr-p) - (1<<depr-p)//2)
    else:
        base *= 1<<depr-p
    base %= mod
    for i in range(d):
        cand = 1<<i
        if i == depl:
            cand -= 1
        if i == depr:
            cand -= 1

        base *= fact[cand]
        base %= mod
    ans += base
    ans %= mod
print(ans)
0