結果

問題 No.2406 Difference of Coordinate Squared
ユーザー ニックネームニックネーム
提出日時 2023-08-04 23:10:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-05-05 01:41:50
合計ジャッジ時間 4,581 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 106 ms
75,264 KB
testcase_02 AC 104 ms
77,568 KB
testcase_03 AC 74 ms
74,240 KB
testcase_04 AC 97 ms
77,184 KB
testcase_05 AC 72 ms
59,392 KB
testcase_06 AC 66 ms
67,328 KB
testcase_07 AC 72 ms
66,048 KB
testcase_08 AC 72 ms
69,760 KB
testcase_09 AC 77 ms
72,064 KB
testcase_10 AC 77 ms
74,240 KB
testcase_11 AC 86 ms
71,552 KB
testcase_12 AC 93 ms
72,960 KB
testcase_13 AC 81 ms
73,984 KB
testcase_14 AC 82 ms
73,728 KB
testcase_15 AC 80 ms
75,264 KB
testcase_16 AC 68 ms
69,376 KB
testcase_17 AC 38 ms
52,224 KB
testcase_18 AC 46 ms
60,416 KB
testcase_19 AC 87 ms
73,088 KB
testcase_20 AC 71 ms
74,752 KB
testcase_21 AC 72 ms
68,480 KB
testcase_22 AC 50 ms
63,744 KB
testcase_23 AC 83 ms
75,648 KB
testcase_24 AC 57 ms
63,744 KB
testcase_25 AC 49 ms
59,008 KB
testcase_26 AC 42 ms
52,352 KB
testcase_27 AC 42 ms
52,352 KB
testcase_28 AC 43 ms
52,224 KB
testcase_29 AC 43 ms
52,608 KB
testcase_30 AC 42 ms
52,352 KB
testcase_31 AC 41 ms
52,608 KB
testcase_32 AC 41 ms
51,968 KB
testcase_33 AC 41 ms
52,096 KB
testcase_34 AC 39 ms
52,224 KB
testcase_35 AC 42 ms
52,352 KB
testcase_36 AC 38 ms
52,352 KB
testcase_37 AC 38 ms
52,352 KB
testcase_38 AC 38 ms
52,480 KB
testcase_39 AC 36 ms
52,096 KB
testcase_40 AC 36 ms
52,096 KB
testcase_41 AC 38 ms
52,352 KB
testcase_42 AC 38 ms
52,224 KB
testcase_43 AC 40 ms
52,480 KB
testcase_44 AC 38 ms
52,096 KB
testcase_45 AC 39 ms
52,224 KB
testcase_46 AC 37 ms
52,096 KB
testcase_47 AC 37 ms
52,224 KB
testcase_48 AC 38 ms
51,968 KB
testcase_49 AC 37 ms
52,352 KB
testcase_50 AC 36 ms
52,352 KB
testcase_51 AC 38 ms
52,864 KB
testcase_52 AC 38 ms
52,096 KB
testcase_53 AC 37 ms
51,840 KB
testcase_54 AC 36 ms
52,608 KB
testcase_55 AC 37 ms
52,096 KB
testcase_56 AC 37 ms
51,968 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
    ans += 2*(1+(i!=j))*cmb(n,(n+i)//2)*cmb(n,(n+j)//2)%mod
if m==n%2==0: ans = 2*cmb(n,n//2)*pow(2,n,mod)%mod-cmb(n,n//2)**2%mod
print(ans*pow(4,mod-1-n,mod)%mod)
0