結果

問題 No.411 昇順昇順ソート
ユーザー convexineqconvexineq
提出日時 2021-02-03 03:43:57
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 508 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 573,824 KB
最終ジャッジ日時 2024-06-30 00:12:05
合計ジャッジ時間 5,425 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
63,872 KB
testcase_01 AC 42 ms
57,916 KB
testcase_02 AC 42 ms
58,112 KB
testcase_03 AC 42 ms
58,368 KB
testcase_04 AC 43 ms
58,368 KB
testcase_05 AC 42 ms
58,112 KB
testcase_06 AC 42 ms
58,240 KB
testcase_07 AC 42 ms
57,712 KB
testcase_08 AC 42 ms
58,112 KB
testcase_09 AC 43 ms
58,128 KB
testcase_10 AC 43 ms
58,072 KB
testcase_11 AC 43 ms
58,496 KB
testcase_12 AC 43 ms
58,240 KB
testcase_13 AC 43 ms
58,020 KB
testcase_14 AC 43 ms
58,192 KB
testcase_15 AC 43 ms
57,984 KB
testcase_16 AC 42 ms
57,648 KB
testcase_17 AC 43 ms
57,792 KB
testcase_18 AC 43 ms
58,240 KB
testcase_19 AC 43 ms
58,112 KB
testcase_20 AC 39 ms
52,224 KB
testcase_21 AC 39 ms
51,840 KB
testcase_22 AC 39 ms
51,840 KB
testcase_23 AC 38 ms
52,084 KB
testcase_24 AC 39 ms
51,968 KB
testcase_25 AC 38 ms
51,712 KB
testcase_26 AC 38 ms
52,224 KB
testcase_27 AC 84 ms
82,040 KB
testcase_28 MLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
N = 1<<n
dp0 = [[0]*n for _ in range(N)]
dp1 = [[0]*n for _ in range(N)]
dp0[1<<(k-1)][k-1] = 1
for mask in range(1<<n):
    for i in range(n):
        if dp0[mask][i] == dp1[mask][i] == 0: continue
        for j in range(n):
            if mask>>j&1: continue
            if i < j:
                dp0[mask|(1<<j)][j] += dp0[mask][i]
                dp1[mask|(1<<j)][j] += dp1[mask][i]
            else:
                dp1[mask|(1<<j)][j] += dp0[mask][i]
print(sum(dp1[N-1]))
0