結果

問題 No.1683 Robot Guidance
ユーザー KudeKude
提出日時 2021-09-17 22:08:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,059 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 97,040 KB
最終ジャッジ日時 2024-06-29 20:42:10
合計ジャッジ時間 4,759 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 78 ms
90,920 KB
testcase_02 AC 76 ms
91,796 KB
testcase_03 AC 83 ms
96,836 KB
testcase_04 AC 85 ms
96,788 KB
testcase_05 AC 85 ms
95,728 KB
testcase_06 AC 87 ms
95,800 KB
testcase_07 AC 86 ms
96,160 KB
testcase_08 AC 102 ms
96,124 KB
testcase_09 AC 89 ms
96,048 KB
testcase_10 AC 101 ms
96,088 KB
testcase_11 AC 97 ms
96,092 KB
testcase_12 AC 100 ms
95,340 KB
testcase_13 AC 77 ms
91,252 KB
testcase_14 AC 96 ms
95,604 KB
testcase_15 AC 90 ms
96,036 KB
testcase_16 AC 80 ms
91,032 KB
testcase_17 AC 75 ms
91,580 KB
testcase_18 AC 80 ms
92,728 KB
testcase_19 AC 80 ms
91,740 KB
testcase_20 AC 81 ms
91,708 KB
testcase_21 AC 83 ms
93,932 KB
testcase_22 AC 77 ms
89,604 KB
testcase_23 AC 82 ms
91,488 KB
testcase_24 AC 106 ms
95,688 KB
testcase_25 AC 82 ms
90,796 KB
testcase_26 AC 81 ms
90,932 KB
testcase_27 AC 84 ms
92,312 KB
testcase_28 AC 85 ms
91,172 KB
testcase_29 AC 85 ms
91,304 KB
testcase_30 AC 83 ms
91,500 KB
testcase_31 AC 86 ms
92,044 KB
testcase_32 AC 81 ms
93,584 KB
testcase_33 AC 95 ms
96,240 KB
testcase_34 AC 100 ms
96,336 KB
testcase_35 AC 94 ms
96,164 KB
testcase_36 AC 94 ms
95,660 KB
testcase_37 AC 89 ms
96,676 KB
testcase_38 AC 88 ms
97,040 KB
testcase_39 AC 82 ms
92,480 KB
testcase_40 AC 75 ms
91,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

fact_range = 2 * 10**6 + 100
fact = [1] * (fact_range + 1)
for i in range(0, fact_range):
    fact[i+1] = fact[i] * (i + 1) % MOD

ifact = [1] * (fact_range + 1)
ifact[fact_range] = pow(fact[fact_range], MOD - 2, MOD)
for i in range(fact_range, 0, -1):
    ifact[i-1] = ifact[i] * i % MOD

def comb(n, k):
    if k == 0:
        return 1
    if k < 0 or n < k:
        return 0
    else:
        return fact[n] * ifact[n-k] % MOD * ifact[k] % MOD


g, t, x, y = map(int, input().split())
ans = 0
t += 1
cnt_r = t // 4 + (t % 4 >= 1)
cnt_u = t // 4 + (t % 4 >= 2)
cnt_l = t // 4 + (t % 4 >= 3)
cnt_d = t // 4
for k1 in range(g + 1):
    k2 = g - k1
    if (x + k1) % 2 or (y + k2) % 2 or k1 < abs(x) or k2 < abs(y):
        continue
    x_r = (x + k1) // 2
    x_l = (k1 - x) // 2
    y_u = (y + k2) // 2
    y_d = (k2 - y) // 2
    if k1 == 1:
        print(x_r, x_l, y_u, y_d)
    ans += comb(x_r + cnt_r - 1, x_r) * comb(x_l + cnt_l - 1, x_l) % MOD * comb(y_u + cnt_u - 1, y_u) % MOD * comb(y_d + cnt_d - 1, y_d)
    ans %= MOD
print(ans)
0