結果

問題 No.2975 単調増加部分積
ユーザー 👑 p-adicp-adic
提出日時 2023-08-22 09:53:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 664 ms / 10,000 ms
コード長 305 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 65,664 KB
最終ジャッジ日時 2024-12-16 05:44:40
合計ジャッジ時間 4,647 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 36 ms
52,480 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 45 ms
58,624 KB
testcase_11 AC 46 ms
59,392 KB
testcase_12 AC 44 ms
58,624 KB
testcase_13 AC 53 ms
60,160 KB
testcase_14 AC 49 ms
59,392 KB
testcase_15 AC 55 ms
60,544 KB
testcase_16 AC 47 ms
60,288 KB
testcase_17 AC 55 ms
62,720 KB
testcase_18 AC 61 ms
62,848 KB
testcase_19 AC 113 ms
63,616 KB
testcase_20 AC 650 ms
65,664 KB
testcase_21 AC 664 ms
65,536 KB
testcase_22 AC 639 ms
65,664 KB
testcase_23 AC 634 ms
65,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
N,M,P=map(int,input().split())
K=N+1
U=[1]*K
F=U[:]
E=U[:]
for i in R(2,K):
	U[i]=P-P//i*U[P%i]%P
	F[i],E[i]=F[i-1]*i%P,E[i-1]*U[i]%P
Q=[[0]*K,[0]*K]
a=0
for j in R(1,M+1):
	T=Q[j%2]
	for n in R(1,K):T[n]=[n*(n+1)//2,T[n-1]+Q[1-j%2][n-1]*n][j>1]%P
	a+=T[N]*E[j]*E[M-j]*F[N-j]
print(a*F[M]*E[N]%P)
0