結果

問題 No.2668 Trees on Graph Paper
ユーザー chineristACchineristAC
提出日時 2024-03-08 23:46:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,664 ms / 3,000 ms
コード長 984 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 77,368 KB
最終ジャッジ日時 2024-09-29 20:54:16
合計ジャッジ時間 20,002 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
55,812 KB
testcase_01 AC 45 ms
55,824 KB
testcase_02 AC 45 ms
56,056 KB
testcase_03 AC 224 ms
77,320 KB
testcase_04 AC 44 ms
56,384 KB
testcase_05 AC 44 ms
56,284 KB
testcase_06 AC 45 ms
57,016 KB
testcase_07 AC 46 ms
57,372 KB
testcase_08 AC 44 ms
55,964 KB
testcase_09 AC 43 ms
56,436 KB
testcase_10 AC 44 ms
56,056 KB
testcase_11 AC 44 ms
55,688 KB
testcase_12 AC 45 ms
56,152 KB
testcase_13 AC 44 ms
56,400 KB
testcase_14 AC 1,022 ms
77,248 KB
testcase_15 AC 1,538 ms
77,000 KB
testcase_16 AC 808 ms
77,284 KB
testcase_17 AC 145 ms
77,128 KB
testcase_18 AC 1,458 ms
77,136 KB
testcase_19 AC 1,266 ms
77,148 KB
testcase_20 AC 1,353 ms
77,188 KB
testcase_21 AC 1,322 ms
77,344 KB
testcase_22 AC 1,332 ms
77,348 KB
testcase_23 AC 859 ms
77,144 KB
testcase_24 AC 1,645 ms
77,072 KB
testcase_25 AC 1,664 ms
77,368 KB
testcase_26 AC 1,649 ms
77,324 KB
testcase_27 AC 1,663 ms
77,204 KB
testcase_28 AC 45 ms
56,784 KB
testcase_29 AC 43 ms
56,364 KB
testcase_30 AC 43 ms
56,176 KB
testcase_31 AC 43 ms
56,956 KB
testcase_32 AC 43 ms
56,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import permutations
from heapq import heappop,heappush
from collections import deque
import random
import bisect

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N,M = mi()

"""
状態:自分からみて埋まっていない最小値が(-1,0,1)の状態
"""

res = 1
dp = [1,1,1]
for i in range(N-2):
    for j in range(2):
        ndp = [0,0,0]
        x = 2 * (i+1) + j
        for mini in (-1,0,1):
            for nxt_mini in (-1,0,1):
                if mini > nxt_mini+1:
                    continue
                deg = nxt_mini - mini + 1
                if deg == 0:
                    ndp[nxt_mini] += dp[mini] * x % M
                else:
                    ndp[nxt_mini] += dp[mini] % M
                ndp[nxt_mini] %= M
        dp = ndp
        #print(dp)
    res *= dp[1]
    res %= M

#print(res)
for x in range(1,2*N):
    res = res * x % M

print(res)

                    
0