結果
問題 | No.1311 Reverse Permutation Index |
ユーザー | tktk_snsn |
提出日時 | 2020-12-08 22:02:28 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 32 ms / 1,500 ms |
コード長 | 428 bytes |
コンパイル時間 | 77 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-09-18 20:02:26 |
合計ジャッジ時間 | 886 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,752 KB |
testcase_01 | AC | 31 ms
10,752 KB |
testcase_02 | AC | 30 ms
10,880 KB |
testcase_03 | AC | 32 ms
10,752 KB |
testcase_04 | AC | 30 ms
10,752 KB |
testcase_05 | AC | 30 ms
10,752 KB |
testcase_06 | AC | 30 ms
10,880 KB |
testcase_07 | AC | 30 ms
10,752 KB |
ソースコード
import math n, s = map(int, input().split()) # 元の順列の復元 P = [] num = list(range(s)) for i in reversed(range(s)): d, n = divmod(n, math.factorial(i)) P.append(num.pop(d)) # 逆置換作成 R = [-1] * s for i, p in enumerate(P): R[p] = i # 辞書順の位置 ans = 0 num = list(range(s)) for i, v in enumerate(R, 1): ans += math.factorial(s - i) * num.index(v) num.pop(num.index(v)) print(ans)