結果

問題 No.2668 Trees on Graph Paper
ユーザー ゼットゼット
提出日時 2024-03-08 23:26:22
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 669 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 76,972 KB
最終ジャッジ日時 2024-09-29 20:45:05
合計ジャッジ時間 32,402 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,416 KB
testcase_01 AC 40 ms
53,760 KB
testcase_02 AC 39 ms
52,012 KB
testcase_03 AC 352 ms
76,248 KB
testcase_04 AC 38 ms
52,524 KB
testcase_05 AC 40 ms
52,868 KB
testcase_06 AC 37 ms
51,820 KB
testcase_07 AC 37 ms
51,936 KB
testcase_08 AC 38 ms
52,620 KB
testcase_09 AC 38 ms
53,112 KB
testcase_10 AC 38 ms
52,700 KB
testcase_11 AC 38 ms
52,676 KB
testcase_12 AC 37 ms
51,952 KB
testcase_13 AC 38 ms
51,944 KB
testcase_14 AC 1,965 ms
76,780 KB
testcase_15 AC 2,573 ms
76,264 KB
testcase_16 AC 1,420 ms
76,104 KB
testcase_17 AC 213 ms
76,676 KB
testcase_18 AC 2,466 ms
76,292 KB
testcase_19 AC 2,088 ms
75,996 KB
testcase_20 AC 1,741 ms
75,716 KB
testcase_21 AC 2,142 ms
75,872 KB
testcase_22 AC 2,500 ms
76,740 KB
testcase_23 AC 1,580 ms
76,532 KB
testcase_24 TLE -
testcase_25 AC 2,645 ms
76,972 KB
testcase_26 AC 2,971 ms
76,924 KB
testcase_27 AC 2,749 ms
76,348 KB
testcase_28 AC 39 ms
52,696 KB
testcase_29 AC 39 ms
52,852 KB
testcase_30 AC 38 ms
52,564 KB
testcase_31 AC 36 ms
52,860 KB
testcase_32 AC 37 ms
51,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,mod=map(int,input().split())
dp=[0]*3
dp[2]=1
score=[0]*3
score[2]=1
result=1
for x in range(1,2*N):
  result*=x
  result%=mod
for i in range(1,2*N-1):
  dp2=[0]*3
  score2=[0]*3
  for j in range(3):
    for k in range(3):
      if j==2 and k==0:
        continue
      dp2[k]+=dp[j]
      dp2[k]%=mod
      if k<=j:
        score2[k]+=score[j]
      elif k==1 and j==0:
        score2[k]+=score[j]*(i-1)
      elif k==2 and j==1:
        score2[k]+=score[j]*i
      else:
        w=score[j]*i
        w%=mod
        w*=i-1
        w%=mod
        score2[k]+=w
      score[k]%=mod
  dp=dp2
  score=score2
  if i%2==0:
    result*=score[0]
    result%=mod
print(result)
0