結果
問題 | No.93 ペガサス |
ユーザー | ytft |
提出日時 | 2022-11-10 14:36:00 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 549 bytes |
コンパイル時間 | 111 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 60,360 KB |
最終ジャッジ日時 | 2024-07-23 16:54:05 |
合計ジャッジ時間 | 14,207 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 497 ms
44,324 KB |
testcase_01 | AC | 498 ms
43,688 KB |
testcase_02 | AC | 496 ms
44,328 KB |
testcase_03 | AC | 496 ms
44,324 KB |
testcase_04 | AC | 2,365 ms
47,440 KB |
testcase_05 | AC | 1,151 ms
45,604 KB |
testcase_06 | AC | 915 ms
44,068 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
import sys import numpy as np input=lambda:sys.stdin.readline().rstrip() mod=10**9+7 N=int(input()) if N<=3: print([1,2,2][N-1]) sys.exit() dp=np.zeros((N+1,N,2,2),dtype=int) dp[4,2,1,1]=8 dp[4,1,0,1]=4 dp[4,1,1,0]=4 dp[4,0,0,0]=8 for i in range(4,N): for j in range(i): for k in range(2): for l in range(2): dp[i,j,k,l]%=mod dp[i+1,j+1,l,1]+=(2-k)*dp[i,j,k,l] dp[i+1,j-1,l,0]+=(j-k-l)*dp[i,j,k,l] dp[i+1,j,l,0]+=(i-j-1+k)*dp[i,j,k,l] dp[i+1,j-1,0,0]+=l*dp[i,j,k,l] dp[i+1,j,l,1]+=k*dp[i,j,k,l] print(dp[N,0,0,0]%mod)