結果

問題 No.2668 Trees on Graph Paper
ユーザー ニックネームニックネーム
提出日時 2024-03-08 23:32:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 348 ms / 3,000 ms
コード長 265 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 75,692 KB
最終ジャッジ日時 2024-09-29 20:47:50
合計ジャッジ時間 5,686 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,768 KB
testcase_01 AC 37 ms
51,440 KB
testcase_02 AC 38 ms
53,820 KB
testcase_03 AC 77 ms
74,768 KB
testcase_04 AC 38 ms
53,912 KB
testcase_05 AC 35 ms
52,576 KB
testcase_06 AC 37 ms
52,272 KB
testcase_07 AC 37 ms
52,432 KB
testcase_08 AC 36 ms
53,428 KB
testcase_09 AC 38 ms
52,764 KB
testcase_10 AC 36 ms
52,216 KB
testcase_11 AC 37 ms
53,032 KB
testcase_12 AC 36 ms
52,500 KB
testcase_13 AC 37 ms
52,572 KB
testcase_14 AC 231 ms
75,028 KB
testcase_15 AC 318 ms
75,548 KB
testcase_16 AC 185 ms
75,088 KB
testcase_17 AC 65 ms
75,000 KB
testcase_18 AC 304 ms
75,012 KB
testcase_19 AC 269 ms
75,136 KB
testcase_20 AC 288 ms
74,824 KB
testcase_21 AC 280 ms
75,384 KB
testcase_22 AC 288 ms
75,140 KB
testcase_23 AC 201 ms
75,252 KB
testcase_24 AC 348 ms
75,412 KB
testcase_25 AC 346 ms
75,692 KB
testcase_26 AC 348 ms
75,140 KB
testcase_27 AC 342 ms
75,400 KB
testcase_28 AC 37 ms
53,352 KB
testcase_29 AC 36 ms
53,432 KB
testcase_30 AC 38 ms
53,020 KB
testcase_31 AC 38 ms
52,972 KB
testcase_32 AC 38 ms
52,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
x = 1; dp = [0]*3+[1]
for i in range(1,2*n): x = x*i%m
for i in range(1,2*n-2):
    dp = [(dp[0]+dp[2])%m,(dp[0]*i+dp[2]*i)%m,(dp[1]+dp[2]+dp[3])%m,(dp[1]*i+dp[2]*i+dp[3])%m]
    if i%2==0: x = x*(dp[0]+dp[1]+dp[2]*2+dp[3])%m
print(x)
0