結果

問題 No.1683 Robot Guidance
ユーザー puznekopuzneko
提出日時 2021-11-13 00:13:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,226 ms / 2,000 ms
コード長 1,972 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 115,140 KB
最終ジャッジ日時 2024-05-04 13:09:06
合計ジャッジ時間 24,907 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,480 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 52 ms
63,104 KB
testcase_03 AC 315 ms
81,792 KB
testcase_04 AC 126 ms
77,696 KB
testcase_05 AC 190 ms
79,872 KB
testcase_06 AC 416 ms
86,400 KB
testcase_07 AC 346 ms
83,328 KB
testcase_08 AC 1,104 ms
111,488 KB
testcase_09 AC 365 ms
86,708 KB
testcase_10 AC 684 ms
95,984 KB
testcase_11 AC 556 ms
93,292 KB
testcase_12 AC 910 ms
108,392 KB
testcase_13 AC 39 ms
52,352 KB
testcase_14 AC 1,135 ms
113,184 KB
testcase_15 AC 866 ms
107,528 KB
testcase_16 AC 778 ms
101,100 KB
testcase_17 AC 301 ms
81,536 KB
testcase_18 AC 352 ms
82,160 KB
testcase_19 AC 62 ms
68,224 KB
testcase_20 AC 61 ms
67,840 KB
testcase_21 AC 63 ms
67,328 KB
testcase_22 AC 425 ms
83,584 KB
testcase_23 AC 813 ms
106,624 KB
testcase_24 AC 1,226 ms
115,072 KB
testcase_25 AC 833 ms
107,264 KB
testcase_26 AC 1,192 ms
114,688 KB
testcase_27 AC 1,212 ms
115,140 KB
testcase_28 AC 819 ms
106,884 KB
testcase_29 AC 39 ms
51,968 KB
testcase_30 AC 808 ms
106,752 KB
testcase_31 AC 720 ms
103,040 KB
testcase_32 AC 724 ms
103,168 KB
testcase_33 AC 640 ms
99,712 KB
testcase_34 AC 649 ms
99,864 KB
testcase_35 AC 732 ms
103,424 KB
testcase_36 AC 749 ms
103,552 KB
testcase_37 AC 595 ms
97,932 KB
testcase_38 AC 607 ms
97,920 KB
testcase_39 AC 838 ms
107,136 KB
testcase_40 AC 40 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def powmod(n,pow,mod):
    val = 1
    while pow > 0:
        if pow & 1:
            val = (val * n) % mod
        pow = pow >> 1
        n = (n * n) % mod
    return val

n, m, x, y = map(int, input().split())
if (n < x) | (n < y):
    print(0)
    exit()
p = 10 ** 9 + 7
kaijo = [1 for i in range(n+m//2+2)]
invkaijo = [1 for i in range(n+m//2+2)]
for i in range(1,n+m//2+2):
    kaijo[i] = kaijo[i-1] * i % p
    invkaijo[i] = powmod(kaijo[i],p-2,p)

pmnum = [m // 4 for i in range(4)]
for i in range(m%4+1):
    pmnum[i] += 1

xans = [0 for i in range(n+1)]
yans = [0 for i in range(n+1)]

if x >= 0:
    if pmnum[2] >= 1:
        for i in range((n-x)//2+1):
            xans[x+i*2] = kaijo[x+i+pmnum[0]-1] * invkaijo[x+i] % p * invkaijo[pmnum[0]-1] % p
            xans[x+i*2] = xans[x+i*2] * kaijo[i+pmnum[2]-1] % p * invkaijo[i] % p * invkaijo[pmnum[2]-1] % p
    else:
        xans[x] = 1
else:
    x = -x
    if pmnum[2] >= 1:
        for i in range((n-x)//2+1):
            xans[x+i*2] = kaijo[x+i+pmnum[2]-1] * invkaijo[x+i] % p * invkaijo[pmnum[2]-1] % p
            xans[x+i*2] = xans[x+i*2] * kaijo[i+pmnum[0]-1] % p * invkaijo[i] % p * invkaijo[pmnum[0]-1] % p

if pmnum[1] >= 1:
    if y >= 0:
        if pmnum[3] >= 1:
            for i in range((n-y)//2+1):
                yans[y+i*2] = kaijo[y+i+pmnum[1]-1] * invkaijo[y+i] % p * invkaijo[pmnum[1]-1] % p
                yans[y+i*2] = yans[y+i*2] * kaijo[i+pmnum[3]-1] % p * invkaijo[i] % p * invkaijo[pmnum[3]-1] % p
        else:
            yans[y] = 1
    else:
        y = -y
        if pmnum[3] >= 1:
            for i in range((n-y)//2+1):
                yans[y+i*2] = kaijo[y+i+pmnum[3]-1] * invkaijo[y+i] % p * invkaijo[pmnum[3]-1] % p
                yans[y+i*2] = yans[y+i*2] * kaijo[i+pmnum[1]-1] % p * invkaijo[i] % p * invkaijo[pmnum[1]-1] % p
else:
    if y == 0:
        yans[0] = 1

ans = 0
for i in range(n+1):
    ans = (ans + xans[i] * yans[n-i] % p) % p

print("{}".format(ans))
0