結果

問題 No.916 Encounter On A Tree
ユーザー stngstng
提出日時 2022-08-14 21:51:07
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,289 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 85,536 KB
最終ジャッジ日時 2024-10-01 13:06:56
合計ジャッジ時間 5,563 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 WA -
testcase_02 AC 69 ms
74,496 KB
testcase_03 AC 67 ms
74,496 KB
testcase_04 RE -
testcase_05 AC 67 ms
74,240 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 47 ms
60,544 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 40 ms
51,712 KB
testcase_12 RE -
testcase_13 AC 69 ms
74,496 KB
testcase_14 RE -
testcase_15 AC 69 ms
74,496 KB
testcase_16 RE -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 RE -
testcase_21 WA -
testcase_22 AC 70 ms
74,752 KB
testcase_23 RE -
testcase_24 AC 68 ms
74,496 KB
testcase_25 WA -
testcase_26 AC 56 ms
66,688 KB
testcase_27 WA -
testcase_28 AC 52 ms
61,952 KB
testcase_29 WA -
testcase_30 AC 68 ms
74,368 KB
testcase_31 RE -
testcase_32 AC 68 ms
74,240 KB
testcase_33 AC 57 ms
66,688 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 69 ms
74,368 KB
testcase_37 RE -
testcase_38 WA -
testcase_39 AC 68 ms
74,496 KB
testcase_40 RE -
testcase_41 AC 39 ms
52,096 KB
testcase_42 AC 39 ms
51,712 KB
testcase_43 AC 40 ms
51,712 KB
testcase_44 RE -
testcase_45 AC 47 ms
60,032 KB
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 AC 38 ms
51,968 KB
testcase_50 AC 38 ms
51,712 KB
testcase_51 RE -
testcase_52 WA -
testcase_53 AC 37 ms
51,968 KB
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 RE -
testcase_58 AC 44 ms
58,496 KB
testcase_59 WA -
testcase_60 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

d,L,R,k = map(int,input().split())

MOD = 10**9+7
N = 2**d

fact = [1]*(N+1)
rfact = [1]*(N+1)
r = 1
for i in range(1, N+1):
    fact[i] = r = r * i % MOD
rfact[N] = r = pow(fact[N], MOD-2, MOD)
for i in range(N, 0, -1):
    rfact[i-1] = r = r * i % MOD

# nPk (mod MOD) を求める
def perm(n, k):
    return fact[n] * rfact[n-k] % MOD

rui = []
val = 1
for i in range(d):
    rui.append(val)
    if L >= val:
        lidx = i
    if R >= val:
        ridx = i
    val *= 2

ans = 1

f = False
if lidx == ridx:
    f = True
    if k % 2 != 0 or k > 2*lidx:
        print(0)
        exit()
else:
    if k % 2 != 1 or k > lidx+ridx:
        print(kk)
        exit()

if f == True:
    for i in range(d):
        if i == lidx:
            tmp = pow(2,i,MOD)
            if tmp == 2:
                ans *= tmp*1*perm(tmp-2,tmp-2)
            else:
                ans *= tmp*2*perm(tmp-2,tmp-2)
            ans %= MOD
            continue
        tmp = pow(2,i,MOD)
        ans *= perm(tmp,tmp)
        ans %= MOD
    print(ans%MOD)
else:
    for i in range(d):
        if i == lidx:
            tmp = pow(2,i,MOD)
            ans *= perm(tmp-1,tmp-1)
            ans %= MOD
            continue
        tmp = pow(2,i,MOD)
        ans *= perm(tmp,tmp)
        ans %= MOD
    print(ans%MOD)
0