結果

問題 No.1683 Robot Guidance
ユーザー rlangevinrlangevin
提出日時 2023-09-27 12:05:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 971 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 107,648 KB
最終ジャッジ日時 2024-07-20 06:13:34
合計ジャッジ時間 6,776 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
89,472 KB
testcase_01 AC 83 ms
89,984 KB
testcase_02 AC 91 ms
93,056 KB
testcase_03 AC 116 ms
107,428 KB
testcase_04 AC 108 ms
107,264 KB
testcase_05 AC 122 ms
107,648 KB
testcase_06 AC 153 ms
107,264 KB
testcase_07 AC 129 ms
107,264 KB
testcase_08 AC 278 ms
107,136 KB
testcase_09 AC 128 ms
107,136 KB
testcase_10 AC 207 ms
107,264 KB
testcase_11 AC 198 ms
107,264 KB
testcase_12 AC 288 ms
107,440 KB
testcase_13 AC 83 ms
89,984 KB
testcase_14 AC 230 ms
107,264 KB
testcase_15 AC 121 ms
107,148 KB
testcase_16 AC 84 ms
89,728 KB
testcase_17 AC 85 ms
89,728 KB
testcase_18 AC 85 ms
89,728 KB
testcase_19 AC 84 ms
89,728 KB
testcase_20 AC 84 ms
89,728 KB
testcase_21 AC 94 ms
94,720 KB
testcase_22 AC 83 ms
90,368 KB
testcase_23 AC 83 ms
90,112 KB
testcase_24 AC 316 ms
107,644 KB
testcase_25 AC 85 ms
89,472 KB
testcase_26 AC 83 ms
90,240 KB
testcase_27 AC 83 ms
90,240 KB
testcase_28 AC 83 ms
89,728 KB
testcase_29 AC 83 ms
89,856 KB
testcase_30 AC 84 ms
89,472 KB
testcase_31 AC 84 ms
89,856 KB
testcase_32 AC 90 ms
89,856 KB
testcase_33 AC 131 ms
107,404 KB
testcase_34 AC 143 ms
107,008 KB
testcase_35 AC 141 ms
107,008 KB
testcase_36 AC 141 ms
107,136 KB
testcase_37 AC 117 ms
102,016 KB
testcase_38 AC 115 ms
102,016 KB
testcase_39 AC 99 ms
90,240 KB
testcase_40 AC 99 ms
89,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7
n = 2 * 10 ** 6 + 5
fact = [1] * (n + 1)
invfact = [1] * (n + 1)
for i in range(1, n):
    fact[i + 1] = ((i+1) * fact[i]) % mod
invfact[n] = pow(fact[n], mod - 2, mod)
for i in range(n - 1, -1, -1):
    invfact[i] = invfact[i + 1] * (i + 1) % mod

def comb(n, r):
    if n < 0 or r < 0 or n - r < 0:
        return 0
    return fact[n] * invfact[r] * invfact[n - r] % mod


A, B, X, Y = map(int, input().split())
L = [0] * 4
if X >= 0:
    L[0] = X
else:
    L[2] = -X

if Y >= 0:
    L[1] = Y
else:
    L[3] = -Y



V = [B//4] * 4
for i in range(B%4 + 1):
    V[i] += 1

ans = 0
N = A - sum(L)
if N < 0 or N % 2:
    print(0)
    exit()

N //= 2

def f(L, temp, V):
    val = 1
    for i in range(4):
        a = L[i] + temp[i]
        if V[i] == a == 0:
            continue
        val *= comb(V[i] - 1 + a, a)
        val %= mod
    return val


for i in range(N + 1):
    temp = [i, N-i, i, N-i]
    ans += f(L, temp, V)
    ans %= mod

print(ans)
0