結果

問題 No.2668 Trees on Graph Paper
ユーザー PNJPNJ
提出日時 2024-03-08 23:34:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,497 ms / 3,000 ms
コード長 324 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 491,336 KB
最終ジャッジ日時 2024-09-29 20:48:57
合計ジャッジ時間 17,567 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,752 KB
testcase_01 AC 38 ms
53,116 KB
testcase_02 AC 33 ms
53,736 KB
testcase_03 AC 181 ms
246,676 KB
testcase_04 AC 36 ms
53,292 KB
testcase_05 AC 34 ms
53,488 KB
testcase_06 AC 33 ms
52,372 KB
testcase_07 AC 33 ms
52,604 KB
testcase_08 AC 33 ms
53,492 KB
testcase_09 AC 35 ms
52,416 KB
testcase_10 AC 34 ms
51,932 KB
testcase_11 AC 33 ms
52,424 KB
testcase_12 AC 34 ms
53,244 KB
testcase_13 AC 35 ms
53,004 KB
testcase_14 AC 845 ms
364,424 KB
testcase_15 AC 1,346 ms
454,228 KB
testcase_16 AC 662 ms
356,136 KB
testcase_17 AC 130 ms
162,268 KB
testcase_18 AC 1,291 ms
454,268 KB
testcase_19 AC 1,112 ms
453,928 KB
testcase_20 AC 1,161 ms
453,244 KB
testcase_21 AC 1,154 ms
454,384 KB
testcase_22 AC 1,156 ms
454,048 KB
testcase_23 AC 670 ms
356,272 KB
testcase_24 AC 1,464 ms
491,088 KB
testcase_25 AC 1,482 ms
490,836 KB
testcase_26 AC 1,497 ms
490,500 KB
testcase_27 AC 1,483 ms
491,336 KB
testcase_28 AC 37 ms
51,904 KB
testcase_29 AC 35 ms
52,576 KB
testcase_30 AC 35 ms
52,400 KB
testcase_31 AC 37 ms
52,712 KB
testcase_32 AC 36 ms
53,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
A = [0,1]
B = [0,1]
C = [0,1]
for i in range(1,2*n):
  a,b,c = A[-1],B[-1],C[-1]
  A.append((a + (i + 1)*b) % m)
  B.append((a + b + (i + 1)*c) % m)
  C.append((a + b + c) % m)

ans = 1
for i in range(1,2*n-1,2):
  ans *= C[i]
  ans %= m
for i in range(1,2*n):
  ans *= i
  ans %= m
print(ans)
0