結果

問題 No.2975 単調増加部分積
ユーザー 👑 p-adicp-adic
提出日時 2023-08-22 09:53:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 305 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,552 KB
最終ジャッジ日時 2024-12-16 05:46:20
合計ジャッジ時間 54,831 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
23,552 KB
testcase_01 AC 28 ms
23,296 KB
testcase_02 AC 28 ms
23,296 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 35 ms
10,752 KB
testcase_12 AC 35 ms
10,752 KB
testcase_13 AC 428 ms
10,752 KB
testcase_14 AC 103 ms
10,880 KB
testcase_15 AC 695 ms
10,880 KB
testcase_16 AC 48 ms
12,288 KB
testcase_17 AC 106 ms
12,544 KB
testcase_18 AC 777 ms
12,672 KB
testcase_19 AC 7,084 ms
12,416 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
権限があれば一括ダウンロードができます

ソースコード

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