結果

問題 No.2406 Difference of Coordinate Squared
ユーザー tassei903tassei903
提出日時 2023-08-04 22:25:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 1,735 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 102,912 KB
最終ジャッジ日時 2024-05-05 01:39:52
合計ジャッジ時間 7,383 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
90,112 KB
testcase_01 AC 107 ms
90,880 KB
testcase_02 AC 143 ms
102,912 KB
testcase_03 AC 102 ms
89,984 KB
testcase_04 AC 135 ms
100,864 KB
testcase_05 AC 123 ms
95,616 KB
testcase_06 AC 94 ms
90,240 KB
testcase_07 AC 97 ms
90,752 KB
testcase_08 AC 97 ms
90,240 KB
testcase_09 AC 106 ms
93,568 KB
testcase_10 AC 104 ms
90,624 KB
testcase_11 AC 113 ms
90,624 KB
testcase_12 AC 108 ms
90,368 KB
testcase_13 AC 102 ms
92,672 KB
testcase_14 AC 100 ms
90,368 KB
testcase_15 AC 99 ms
90,496 KB
testcase_16 AC 100 ms
90,752 KB
testcase_17 AC 98 ms
89,856 KB
testcase_18 AC 95 ms
89,984 KB
testcase_19 AC 107 ms
90,240 KB
testcase_20 AC 98 ms
90,624 KB
testcase_21 AC 104 ms
90,368 KB
testcase_22 AC 97 ms
90,112 KB
testcase_23 AC 103 ms
90,624 KB
testcase_24 AC 98 ms
90,624 KB
testcase_25 AC 94 ms
89,600 KB
testcase_26 AC 95 ms
89,984 KB
testcase_27 AC 98 ms
89,856 KB
testcase_28 AC 100 ms
90,112 KB
testcase_29 AC 94 ms
89,984 KB
testcase_30 AC 99 ms
89,856 KB
testcase_31 AC 98 ms
90,240 KB
testcase_32 AC 99 ms
90,112 KB
testcase_33 AC 99 ms
90,112 KB
testcase_34 AC 96 ms
89,984 KB
testcase_35 AC 97 ms
89,984 KB
testcase_36 AC 98 ms
89,856 KB
testcase_37 AC 100 ms
90,240 KB
testcase_38 AC 99 ms
90,112 KB
testcase_39 AC 100 ms
89,984 KB
testcase_40 AC 98 ms
89,856 KB
testcase_41 AC 96 ms
89,984 KB
testcase_42 AC 100 ms
89,984 KB
testcase_43 AC 95 ms
90,240 KB
testcase_44 AC 96 ms
89,728 KB
testcase_45 AC 94 ms
90,112 KB
testcase_46 AC 91 ms
90,368 KB
testcase_47 AC 96 ms
90,240 KB
testcase_48 AC 90 ms
89,856 KB
testcase_49 AC 94 ms
89,856 KB
testcase_50 AC 94 ms
90,112 KB
testcase_51 AC 93 ms
90,240 KB
testcase_52 AC 92 ms
90,112 KB
testcase_53 AC 90 ms
89,856 KB
testcase_54 AC 97 ms
89,984 KB
testcase_55 AC 91 ms
89,856 KB
testcase_56 AC 91 ms
89,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
def divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]
mod = 998244353
nn = 2*10**6 + 10
fact = [1] * nn
for i in range(nn - 1):
    fact[i + 1] = fact[i] * (i + 1) % mod
invfact = [1] * nn
invfact[nn - 1] = pow(fact[nn - 1], mod - 2, mod)
for i in range(nn - 1)[::-1]:
    invfact[i] = invfact[i + 1] * (i + 1) % mod
 
def binom(x, y):
    if x < 0 or y < 0 or x - y < 0:
        return 0
    return fact[x] * invfact[y] % mod * invfact[x - y] % mod

n, m = na()

d = divisors(abs(m))
ans = 0
if m != 0:
    for i in d:
        j = m // i
        if (i + n) % 2 == 0 and (j + n) % 2 == 0:
            ans += binom(n, (i+n)//2) * binom(n, (j+n)//2) % mod
            ans %= mod
        i = -i
        j = m // i
        if (i + n) % 2 == 0 and (j + n) % 2 == 0:
            ans += binom(n, (i+n)//2) * binom(n, (j+n)//2) % mod
            ans %= mod
        
    print(ans * pow(pow(4, n, mod), mod-2, mod) % mod)
else:
    if n % 2 == 0:
        ans += 2 * binom(n, n//2) * pow(pow(2, n, mod),mod-2, mod) % mod
        ans %= mod
        ans -= binom(n, n//2)*binom(n, n//2) * pow(pow(4, n, mod),mod-2, mod) % mod
        ans %= mod
    print(ans)
0