結果

問題 No.1683 Robot Guidance
ユーザー mkawa2mkawa2
提出日時 2023-10-04 11:52:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 1,739 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 241,280 KB
最終ジャッジ日時 2024-07-26 14:22:20
合計ジャッジ時間 7,962 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
230,656 KB
testcase_01 AC 138 ms
230,656 KB
testcase_02 AC 144 ms
232,576 KB
testcase_03 AC 164 ms
239,360 KB
testcase_04 AC 163 ms
240,896 KB
testcase_05 AC 158 ms
239,504 KB
testcase_06 AC 159 ms
239,488 KB
testcase_07 AC 212 ms
240,384 KB
testcase_08 AC 185 ms
241,280 KB
testcase_09 AC 165 ms
239,616 KB
testcase_10 AC 174 ms
239,360 KB
testcase_11 AC 179 ms
241,280 KB
testcase_12 AC 185 ms
240,640 KB
testcase_13 AC 145 ms
231,424 KB
testcase_14 AC 176 ms
239,488 KB
testcase_15 AC 182 ms
241,024 KB
testcase_16 AC 150 ms
232,576 KB
testcase_17 AC 148 ms
232,576 KB
testcase_18 AC 140 ms
232,576 KB
testcase_19 AC 151 ms
232,448 KB
testcase_20 AC 145 ms
232,576 KB
testcase_21 AC 151 ms
236,928 KB
testcase_22 AC 140 ms
230,784 KB
testcase_23 AC 148 ms
231,680 KB
testcase_24 AC 188 ms
237,952 KB
testcase_25 AC 152 ms
231,808 KB
testcase_26 AC 150 ms
231,424 KB
testcase_27 AC 149 ms
232,576 KB
testcase_28 AC 149 ms
231,936 KB
testcase_29 AC 144 ms
231,936 KB
testcase_30 AC 146 ms
231,552 KB
testcase_31 AC 151 ms
232,320 KB
testcase_32 AC 150 ms
232,704 KB
testcase_33 AC 176 ms
241,024 KB
testcase_34 AC 170 ms
240,000 KB
testcase_35 AC 169 ms
237,056 KB
testcase_36 AC 168 ms
237,824 KB
testcase_37 AC 170 ms
240,128 KB
testcase_38 AC 171 ms
239,616 KB
testcase_39 AC 149 ms
232,448 KB
testcase_40 AC 144 ms
230,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 63)
md = 10**9+7
# md = 998244353

def nPr(com_n, com_r):
    if com_r < 0: return 0
    if com_n < com_r: return 0
    return fac[com_n]*ifac[com_n-com_r]%md

def nCr(com_n, com_r):
    if com_r < 0: return 0
    if com_n < com_r: return 0
    return fac[com_n]*ifac[com_r]%md*ifac[com_n-com_r]%md

n_max = 2000005
fac = [1]
for i in range(1, n_max+1): fac.append(fac[-1]*i%md)
ifac = [1]*(n_max+1)
ifac[n_max] = pow(fac[n_max], md-2, md)
for i in range(n_max-1, 1, -1): ifac[i] = ifac[i+1]*(i+1)%md

def H(n, r):
    if n == r == 0: return 1
    return nCr(n+r-1, n)

A, B, X, Y = LI()
q, r = divmod(B+1, 4)
cnt = [q]*4
for i in range(r): cnt[i] += 1

# xp-xm=X
# yp-ym=Y
# xp+xm+yp+ym=A

# yp+ym=A-(xp+xm)
# yp=(Y+A-(xp+xm))//2
ans = 0
for xp in range(A+1):
    xm = xp-X
    yp = (Y+A-(xp+xm))//2
    ym = yp-Y
    if not 0 <= xm <= A or (Y+A-(xp+xm))%2 or not 0 <= yp <= A or not 0 <= ym <= A: continue
    ans += H(xp, cnt[0])*H(yp, cnt[1])%md*H(xm, cnt[2])%md*H(ym, cnt[3])%md
    ans %= md

print(ans)
0