結果

問題 No.916 Encounter On A Tree
ユーザー rlangevinrlangevin
提出日時 2023-02-08 22:55:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 678 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 59,888 KB
最終ジャッジ日時 2024-07-06 07:50:37
合計ジャッジ時間 4,647 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,492 KB
testcase_01 AC 42 ms
53,664 KB
testcase_02 AC 48 ms
57,456 KB
testcase_03 AC 46 ms
58,252 KB
testcase_04 AC 46 ms
57,900 KB
testcase_05 WA -
testcase_06 AC 47 ms
58,672 KB
testcase_07 AC 47 ms
59,580 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 38 ms
52,440 KB
testcase_11 AC 38 ms
52,200 KB
testcase_12 AC 47 ms
58,136 KB
testcase_13 AC 46 ms
57,468 KB
testcase_14 AC 47 ms
57,520 KB
testcase_15 AC 46 ms
59,220 KB
testcase_16 AC 42 ms
58,196 KB
testcase_17 WA -
testcase_18 AC 37 ms
52,956 KB
testcase_19 AC 47 ms
57,920 KB
testcase_20 AC 47 ms
59,376 KB
testcase_21 WA -
testcase_22 AC 46 ms
59,140 KB
testcase_23 WA -
testcase_24 AC 47 ms
58,188 KB
testcase_25 AC 47 ms
57,716 KB
testcase_26 AC 44 ms
58,980 KB
testcase_27 AC 43 ms
57,512 KB
testcase_28 AC 43 ms
58,500 KB
testcase_29 WA -
testcase_30 AC 47 ms
58,376 KB
testcase_31 AC 47 ms
57,660 KB
testcase_32 AC 48 ms
58,924 KB
testcase_33 AC 43 ms
57,904 KB
testcase_34 AC 42 ms
58,540 KB
testcase_35 AC 41 ms
58,200 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 46 ms
58,200 KB
testcase_40 WA -
testcase_41 AC 38 ms
52,492 KB
testcase_42 AC 38 ms
54,156 KB
testcase_43 AC 38 ms
53,000 KB
testcase_44 AC 38 ms
53,144 KB
testcase_45 AC 42 ms
58,088 KB
testcase_46 AC 38 ms
53,132 KB
testcase_47 AC 38 ms
53,076 KB
testcase_48 AC 38 ms
52,080 KB
testcase_49 AC 39 ms
53,692 KB
testcase_50 AC 39 ms
53,328 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 38 ms
52,704 KB
testcase_54 AC 40 ms
53,236 KB
testcase_55 AC 38 ms
52,956 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7

def f(x):
    v = 1
    for i in range(1, 22):
        if 2 ** (i - 1) <= x <= 2 ** i - 1:
            v = i
    return v
            
def g(x):
    v = 1
    for i in range(1, x + 1):
        v *= i
        v %= mod
    return v

D, L, R, K = map(int, input().split())
ans = 1
for i in range(D):
    ans *= g(2 ** i)
    ans %= mod
    
dL, dR = f(L), f(R)
if dL >= dR:
    dL, dR = dR, dL
K -= dR - dL
# print("test", K, dR, dL, ans)
if K < 0 or K % 2:
    print(0)
    exit()
H = K // 2
if H >= dL:
    print(0)
    exit()
if H == 0:
    print(ans)
else:
    ans *= pow(2 ** (dL - 1) - 1, mod - 2, mod)
    ans *= 2 ** (H - 1)
    ans %= mod
    print(ans)
0