結果
問題 | No.1683 Robot Guidance |
ユーザー | aaaaaaaaaa2230 |
提出日時 | 2021-09-18 10:04:17 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,021 bytes |
コンパイル時間 | 132 ms |
コンパイル使用メモリ | 82,336 KB |
実行使用メモリ | 248,496 KB |
最終ジャッジ日時 | 2024-06-30 07:05:55 |
合計ジャッジ時間 | 11,990 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 242 ms
247,232 KB |
testcase_02 | AC | 242 ms
246,672 KB |
testcase_03 | RE | - |
testcase_04 | AC | 256 ms
247,120 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 263 ms
246,832 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | AC | 253 ms
246,720 KB |
testcase_17 | AC | 244 ms
248,248 KB |
testcase_18 | AC | 244 ms
247,124 KB |
testcase_19 | WA | - |
testcase_20 | AC | 241 ms
246,708 KB |
testcase_21 | WA | - |
testcase_22 | AC | 247 ms
246,736 KB |
testcase_23 | WA | - |
testcase_24 | RE | - |
testcase_25 | AC | 254 ms
246,848 KB |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | AC | 238 ms
246,852 KB |
testcase_29 | AC | 235 ms
247,184 KB |
testcase_30 | AC | 237 ms
246,720 KB |
testcase_31 | AC | 249 ms
247,324 KB |
testcase_32 | WA | - |
testcase_33 | AC | 257 ms
246,376 KB |
testcase_34 | WA | - |
testcase_35 | AC | 270 ms
247,304 KB |
testcase_36 | WA | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
ソースコード
a,b,x,y = map(int,input().split()) mod = 10**9+7 ### for bigger prime fact = [1,1] finv = [1,1] inv = [0,1] for i in range(2,10**6+5): fact.append((fact[-1]*i)%mod) inv.append((inv[mod%i]*(mod-mod//i))%mod) finv.append((finv[-1]*inv[-1])%mod) def nCr(n,r,mod): if r > n: return 0 else: return fact[n]*finv[r]%mod*finv[n-r]%mod ans = 0 r = (b+4)//4 u = (b+3)//4 l = (b+2)//4 d = (b+1)//4 for i in range(a+1): if i < x: continue dif = i-x left = a-i-dif base = nCr(i+r-1,i,mod)*nCr(dif+l-1,dif,mod)%mod if left < abs(y): continue if y >= 0: left -= y if left%2: continue need = y+left//2 base *= nCr(need+u-1,need,mod)*nCr(left//2+d-1,d-1,mod)%mod base %= mod else: left += y if left%2: continue need = -y+left//2 base *= nCr(need+u-1,need,mod)*nCr(left//2+d-1,mod)%mod base %= mod ans += base ans %= mod print(ans)