結果

問題 No.916 Encounter On A Tree
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-30 15:43:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 542 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 59,456 KB
最終ジャッジ日時 2024-10-07 15:21:17
合計ジャッジ時間 4,294 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,556 KB
testcase_01 AC 39 ms
52,692 KB
testcase_02 AC 39 ms
52,708 KB
testcase_03 AC 48 ms
58,264 KB
testcase_04 AC 40 ms
52,304 KB
testcase_05 AC 50 ms
58,484 KB
testcase_06 AC 37 ms
53,212 KB
testcase_07 AC 48 ms
58,204 KB
testcase_08 AC 42 ms
58,496 KB
testcase_09 AC 42 ms
59,052 KB
testcase_10 AC 37 ms
52,688 KB
testcase_11 AC 38 ms
53,084 KB
testcase_12 AC 38 ms
52,200 KB
testcase_13 AC 49 ms
58,240 KB
testcase_14 AC 38 ms
53,560 KB
testcase_15 AC 47 ms
58,148 KB
testcase_16 AC 38 ms
52,192 KB
testcase_17 AC 49 ms
58,500 KB
testcase_18 AC 39 ms
52,124 KB
testcase_19 AC 48 ms
58,400 KB
testcase_20 AC 39 ms
54,032 KB
testcase_21 AC 48 ms
58,764 KB
testcase_22 AC 38 ms
53,488 KB
testcase_23 AC 49 ms
58,452 KB
testcase_24 AC 39 ms
53,120 KB
testcase_25 AC 49 ms
58,108 KB
testcase_26 AC 38 ms
53,556 KB
testcase_27 AC 45 ms
58,672 KB
testcase_28 AC 37 ms
53,264 KB
testcase_29 AC 47 ms
58,476 KB
testcase_30 AC 38 ms
52,364 KB
testcase_31 AC 38 ms
52,860 KB
testcase_32 AC 37 ms
52,124 KB
testcase_33 AC 38 ms
52,620 KB
testcase_34 AC 44 ms
59,280 KB
testcase_35 AC 43 ms
57,904 KB
testcase_36 AC 48 ms
59,120 KB
testcase_37 AC 48 ms
59,424 KB
testcase_38 AC 42 ms
59,456 KB
testcase_39 AC 38 ms
52,464 KB
testcase_40 AC 49 ms
58,732 KB
testcase_41 AC 38 ms
52,740 KB
testcase_42 AC 37 ms
52,748 KB
testcase_43 AC 39 ms
53,032 KB
testcase_44 AC 38 ms
52,076 KB
testcase_45 AC 42 ms
58,604 KB
testcase_46 AC 38 ms
53,156 KB
testcase_47 AC 38 ms
52,560 KB
testcase_48 AC 38 ms
52,620 KB
testcase_49 AC 38 ms
52,880 KB
testcase_50 AC 38 ms
53,108 KB
testcase_51 AC 38 ms
52,180 KB
testcase_52 AC 38 ms
52,008 KB
testcase_53 AC 38 ms
53,584 KB
testcase_54 AC 38 ms
52,472 KB
testcase_55 AC 39 ms
52,808 KB
testcase_56 AC 41 ms
58,900 KB
testcase_57 AC 41 ms
58,064 KB
testcase_58 AC 42 ms
58,972 KB
testcase_59 AC 42 ms
58,108 KB
testcase_60 AC 41 ms
58,040 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, dl + 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