結果
問題 | No.1683 Robot Guidance |
ユーザー | mymelochan |
提出日時 | 2021-09-17 23:35:40 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,688 bytes |
コンパイル時間 | 1,160 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 505,080 KB |
最終ジャッジ日時 | 2024-06-29 22:25:16 |
合計ジャッジ時間 | 7,637 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
ソースコード
A,B,X,Y = map(int,input().split()) MOD = 10**9+7 factorial = [1, 1] inverse = [1, 1] invere_base = [0, 1] for i in range(2, 10**7 + 1): factorial.append((factorial[-1] * i) % MOD) invere_base.append((-invere_base[MOD % i] * (MOD // i)) % MOD) #逆元 inverse.append((inverse[-1] * invere_base[-1]) % MOD) #階乗逆元 #combination def nCr(n, r): if (r < 0 or r > n): return 0 r = min(r, n - r) return factorial[n] * inverse[r] % MOD * inverse[n - r] % MOD #permutation def nPr(n,r): if (r < 0 or r > n): return 0 return factorial[n] * inverse[n-r] % MOD up,down,right,left = [(B+1)//4]*4 if (B+1)%4 >= 1: right += 1 if (B+1)%4 >= 2: up += 1 if (B+1)%4 >= 3: left += 1 if (B+1)%4 >= 4: down += 1 ans = 0 for i in range(A+1): #左右にi割り振り j,k = 0,0 if i%2 == X%2 and i >= abs(X): if X >= 0: r = i+(X-i)//2 l = i-r else: l = i+(-X-i)//2 r = i-l t1,t2 = 0,0 if l == 0: t1 = 1 else: t1 = nCr(l+left-1,l) if r == 0: t2 = 1 else: t2 = nCr(r+right-1,r) j = t1*t2%MOD #上下にA-i if (A-i)%2 == Y%2 and (A-i) >= abs(Y): ii = A-i if Y >= 0: u = ii+(Y-ii)//2 d = ii-u else: d = ii+(-Y-ii)//2 u = ii-d t1,t2 = 0,0 if u == 0: t1 = 1 else: t1 = nCr(u+up-1,u) if d == 0: t2 = 1 else: t2 = nCr(d+down-1,d) k = t1*t2%MOD ans += j*k%MOD ans %= MOD print(ans)