結果

問題 No.2406 Difference of Coordinate Squared
ユーザー ニックネームニックネーム
提出日時 2023-08-04 22:58:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 536 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-10-14 21:07:44
合計ジャッジ時間 5,031 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 96 ms
74,880 KB
testcase_02 AC 98 ms
77,056 KB
testcase_03 WA -
testcase_04 AC 96 ms
77,056 KB
testcase_05 AC 65 ms
58,752 KB
testcase_06 AC 63 ms
67,328 KB
testcase_07 AC 68 ms
66,432 KB
testcase_08 AC 70 ms
69,632 KB
testcase_09 AC 76 ms
71,680 KB
testcase_10 AC 74 ms
74,240 KB
testcase_11 AC 86 ms
71,552 KB
testcase_12 AC 91 ms
72,832 KB
testcase_13 AC 79 ms
74,240 KB
testcase_14 AC 76 ms
73,728 KB
testcase_15 AC 79 ms
75,136 KB
testcase_16 AC 68 ms
68,992 KB
testcase_17 AC 40 ms
52,224 KB
testcase_18 WA -
testcase_19 AC 86 ms
73,472 KB
testcase_20 AC 69 ms
74,752 KB
testcase_21 AC 70 ms
68,224 KB
testcase_22 WA -
testcase_23 AC 77 ms
75,264 KB
testcase_24 AC 54 ms
63,488 KB
testcase_25 WA -
testcase_26 AC 39 ms
52,224 KB
testcase_27 WA -
testcase_28 AC 40 ms
52,608 KB
testcase_29 AC 39 ms
52,096 KB
testcase_30 AC 39 ms
52,480 KB
testcase_31 AC 39 ms
52,096 KB
testcase_32 AC 38 ms
52,352 KB
testcase_33 AC 39 ms
52,224 KB
testcase_34 AC 38 ms
52,608 KB
testcase_35 AC 41 ms
52,352 KB
testcase_36 AC 41 ms
51,968 KB
testcase_37 AC 42 ms
52,864 KB
testcase_38 AC 42 ms
51,968 KB
testcase_39 WA -
testcase_40 AC 39 ms
51,840 KB
testcase_41 AC 39 ms
52,480 KB
testcase_42 WA -
testcase_43 AC 39 ms
52,608 KB
testcase_44 AC 40 ms
51,840 KB
testcase_45 AC 38 ms
52,608 KB
testcase_46 AC 38 ms
52,096 KB
testcase_47 AC 39 ms
52,224 KB
testcase_48 WA -
testcase_49 AC 39 ms
51,968 KB
testcase_50 AC 39 ms
52,224 KB
testcase_51 AC 39 ms
52,224 KB
testcase_52 AC 39 ms
52,736 KB
testcase_53 AC 39 ms
52,352 KB
testcase_54 AC 39 ms
52,864 KB
testcase_55 AC 38 ms
51,968 KB
testcase_56 AC 39 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
nmax = n; mod = 998244353; fa = [1]*(nmax+1); fi = [1]*(nmax+1)
for i in range(1,nmax): fa[i+1] = fa[i]*(i+1)%mod
fi[nmax] = pow(fa[nmax],mod-2,mod)
for i in range(nmax,0,-1): fi[i-1] = fi[i]*i%mod
def cmb(n,r): return fa[n]*fi[n-r]%mod*fi[r]%mod if 0<=r<=n else 0
m = abs(m); ans = 0
for i in range(1,int(m**0.5)+1):
    if i*i>m: break
    j = m//i
    if m%i or i%2!=n%2 or j%2!=n%2: continue
    x = cmb(n,(n+i)//2)*cmb(n,(n+j)//2)%mod
    ans += x if i==j else 2*x
print(2*ans*pow(4,mod-1-n,mod)%mod)
0