結果
問題 | No.1311 Reverse Permutation Index |
ユーザー | 37zigen |
提出日時 | 2020-12-18 22:16:05 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 367 bytes |
コンパイル時間 | 147 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-09-21 09:27:07 |
合計ジャッジ時間 | 852 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 27 ms
10,752 KB |
testcase_05 | WA | - |
testcase_06 | AC | 28 ms
10,752 KB |
testcase_07 | WA | - |
ソースコード
import math N, S = map(int, input().split()) a = [] num = list(range(S)) for i in range(S): id = N // math.factorial(S - 1 - i) N %= math.factorial(S - 1 - i) a.append(num.pop(id)) b = [-1] * S for i in range(S): b[a[i]] = i num = list(range(S)) ans = 0 for i in range(S): ans += math.factorial(S - 1 - i) * num.pop(num.index(b[i])) print(ans)