結果
問題 | No.916 Encounter On A Tree |
ユーザー | stng |
提出日時 | 2022-08-14 22:06:06 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,446 bytes |
コンパイル時間 | 381 ms |
コンパイル使用メモリ | 82,456 KB |
実行使用メモリ | 77,036 KB |
最終ジャッジ日時 | 2024-10-01 13:20:02 |
合計ジャッジ時間 | 5,546 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 37 ms
52,480 KB |
testcase_02 | AC | 67 ms
74,496 KB |
testcase_03 | WA | - |
testcase_04 | AC | 68 ms
74,752 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 41 ms
52,224 KB |
testcase_11 | WA | - |
testcase_12 | AC | 70 ms
74,624 KB |
testcase_13 | WA | - |
testcase_14 | AC | 69 ms
74,496 KB |
testcase_15 | WA | - |
testcase_16 | AC | 51 ms
62,592 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 70 ms
74,496 KB |
testcase_23 | WA | - |
testcase_24 | AC | 68 ms
74,752 KB |
testcase_25 | WA | - |
testcase_26 | AC | 57 ms
66,304 KB |
testcase_27 | WA | - |
testcase_28 | AC | 51 ms
62,336 KB |
testcase_29 | WA | - |
testcase_30 | AC | 69 ms
74,752 KB |
testcase_31 | AC | 69 ms
74,752 KB |
testcase_32 | AC | 69 ms
74,752 KB |
testcase_33 | AC | 57 ms
66,176 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | AC | 72 ms
74,752 KB |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | AC | 39 ms
51,840 KB |
testcase_45 | WA | - |
testcase_46 | AC | 38 ms
51,968 KB |
testcase_47 | WA | - |
testcase_48 | AC | 39 ms
51,840 KB |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | AC | 40 ms
51,968 KB |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
ソースコード
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 != (ridx-lidx) % 2 or k > lidx+ridx: print(0) exit() print(lidx,ridx) 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) if tmp != 1: aa = k // 2 ans *= (2**(aa-1))*perm(tmp-1,tmp-1) else: ans *= perm(tmp-1,tmp-1) ans %= MOD continue tmp = pow(2,i,MOD) ans *= perm(tmp,tmp) ans %= MOD print(ans%MOD)