結果

問題 No.916 Encounter On A Tree
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-30 15:34:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 539 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 81,776 KB
実行使用メモリ 59,764 KB
最終ジャッジ日時 2024-10-07 15:15:52
合計ジャッジ時間 4,024 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 34 ms
52,696 KB
testcase_02 AC 33 ms
52,888 KB
testcase_03 AC 44 ms
58,344 KB
testcase_04 AC 33 ms
52,272 KB
testcase_05 AC 43 ms
59,596 KB
testcase_06 WA -
testcase_07 AC 44 ms
59,312 KB
testcase_08 AC 39 ms
58,000 KB
testcase_09 AC 42 ms
58,604 KB
testcase_10 AC 35 ms
53,180 KB
testcase_11 AC 37 ms
52,280 KB
testcase_12 AC 36 ms
51,900 KB
testcase_13 AC 48 ms
58,432 KB
testcase_14 AC 35 ms
52,632 KB
testcase_15 AC 45 ms
58,436 KB
testcase_16 AC 34 ms
52,188 KB
testcase_17 AC 44 ms
58,768 KB
testcase_18 AC 36 ms
51,740 KB
testcase_19 AC 45 ms
58,744 KB
testcase_20 WA -
testcase_21 AC 44 ms
58,780 KB
testcase_22 AC 35 ms
52,820 KB
testcase_23 AC 43 ms
58,368 KB
testcase_24 AC 35 ms
51,884 KB
testcase_25 AC 44 ms
59,640 KB
testcase_26 AC 36 ms
52,984 KB
testcase_27 AC 42 ms
58,044 KB
testcase_28 AC 37 ms
52,428 KB
testcase_29 AC 47 ms
59,376 KB
testcase_30 AC 39 ms
53,764 KB
testcase_31 AC 37 ms
52,564 KB
testcase_32 AC 39 ms
52,160 KB
testcase_33 AC 38 ms
52,824 KB
testcase_34 AC 44 ms
57,760 KB
testcase_35 AC 43 ms
59,000 KB
testcase_36 AC 48 ms
58,484 KB
testcase_37 AC 47 ms
59,360 KB
testcase_38 AC 41 ms
58,312 KB
testcase_39 AC 34 ms
52,272 KB
testcase_40 AC 44 ms
57,868 KB
testcase_41 AC 34 ms
52,672 KB
testcase_42 AC 33 ms
52,832 KB
testcase_43 AC 35 ms
53,136 KB
testcase_44 AC 33 ms
53,284 KB
testcase_45 AC 38 ms
57,928 KB
testcase_46 AC 33 ms
52,992 KB
testcase_47 AC 34 ms
51,988 KB
testcase_48 AC 35 ms
52,308 KB
testcase_49 AC 34 ms
52,016 KB
testcase_50 AC 33 ms
53,100 KB
testcase_51 AC 33 ms
52,832 KB
testcase_52 AC 33 ms
52,076 KB
testcase_53 AC 35 ms
52,940 KB
testcase_54 AC 38 ms
52,196 KB
testcase_55 AC 34 ms
52,628 KB
testcase_56 AC 36 ms
58,184 KB
testcase_57 AC 36 ms
58,144 KB
testcase_58 AC 38 ms
57,668 KB
testcase_59 AC 37 ms
59,268 KB
testcase_60 AC 37 ms
58,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7
D, L, R, K = map(int, input().split())

dl = L.bit_length()
dr = R.bit_length()
for lca in range(1, D + 1):
    if dr + dl - 2 * lca == K:
        break
else:
    print(0)
    exit()


ans = pow(2, lca-1, mod)
if dl == lca:
    ans *= pow(2, dr - lca, mod)
    ans %= mod
else:
    ans *= pow(2, dl - lca, mod)
    ans *= pow(2, dr - lca - 1, mod)
    ans %= mod

cnt = [1 << i for i in range(D)]
cnt[dl - 1] -= 1
cnt[dr - 1] -= 1
for c in cnt:
    for i in range(2, c + 1):
        ans *= i
        ans %= mod
print(ans)
0