結果

問題 No.2917 二重木
ユーザー vwxyzvwxyz
提出日時 2024-10-04 22:53:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 776 ms / 3,000 ms
コード長 524 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 49,920 KB
最終ジャッジ日時 2024-10-04 22:53:47
合計ジャッジ時間 8,428 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 25 ms
10,496 KB
testcase_09 AC 25 ms
10,624 KB
testcase_10 AC 25 ms
10,752 KB
testcase_11 AC 25 ms
10,624 KB
testcase_12 AC 24 ms
10,752 KB
testcase_13 AC 25 ms
10,624 KB
testcase_14 AC 25 ms
10,624 KB
testcase_15 AC 24 ms
10,624 KB
testcase_16 AC 25 ms
10,624 KB
testcase_17 AC 28 ms
10,624 KB
testcase_18 AC 24 ms
10,624 KB
testcase_19 AC 25 ms
10,624 KB
testcase_20 AC 31 ms
11,136 KB
testcase_21 AC 57 ms
12,800 KB
testcase_22 AC 116 ms
16,256 KB
testcase_23 AC 189 ms
14,464 KB
testcase_24 AC 264 ms
23,296 KB
testcase_25 AC 288 ms
25,856 KB
testcase_26 AC 370 ms
30,464 KB
testcase_27 AC 464 ms
23,808 KB
testcase_28 AC 588 ms
42,624 KB
testcase_29 AC 670 ms
49,536 KB
testcase_30 AC 749 ms
49,536 KB
testcase_31 AC 725 ms
49,792 KB
testcase_32 AC 776 ms
49,664 KB
testcase_33 AC 721 ms
49,792 KB
testcase_34 AC 723 ms
49,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,P=map(int,input().split())
ans=0
bino=[[0]*(N+1) for x in range(N+1)]
bino[0][0]=1
for x in range(N+1):
    for y in range(N+1):
        if y:
            bino[x][y]+=bino[x][y-1]
        if x:
            bino[x][y]+=bino[x-1][y]
        bino[x][y]%=P
def comb(n,k):
    if k<0:
        return 0
    if n<k:
        return 0
    return bino[k][n-k]
ans=0
for c in range(1,N+1):
    if c==1:
        cnt=1
    else:
        cnt=pow(c,c-2,P)
    cnt*=comb(N-1,c-1)*pow(N,N-c,P)
    cnt%=P
    ans+=cnt
    ans%=P
print(ans)
0