結果

問題 No.170 スワップ文字列(Easy)
ユーザー yansi819yansi819
提出日時 2024-05-24 18:42:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 5,000 ms
コード長 141 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 78,204 KB
最終ジャッジ日時 2024-05-24 18:42:22
合計ジャッジ時間 2,905 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,644 KB
testcase_01 AC 62 ms
78,036 KB
testcase_02 AC 57 ms
75,556 KB
testcase_03 AC 58 ms
75,436 KB
testcase_04 AC 56 ms
75,436 KB
testcase_05 AC 63 ms
78,204 KB
testcase_06 AC 63 ms
78,080 KB
testcase_07 AC 44 ms
62,552 KB
testcase_08 AC 56 ms
75,440 KB
testcase_09 AC 57 ms
75,576 KB
testcase_10 AC 60 ms
76,728 KB
testcase_11 AC 36 ms
52,760 KB
testcase_12 AC 36 ms
52,660 KB
testcase_13 AC 37 ms
52,128 KB
testcase_14 AC 37 ms
52,832 KB
testcase_15 AC 41 ms
59,108 KB
testcase_16 AC 37 ms
52,408 KB
testcase_17 AC 37 ms
54,220 KB
testcase_18 AC 36 ms
53,648 KB
testcase_19 AC 37 ms
52,400 KB
testcase_20 AC 36 ms
52,236 KB
testcase_21 AC 39 ms
58,776 KB
testcase_22 AC 37 ms
52,872 KB
testcase_23 AC 37 ms
52,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations
S = list(input().rstrip())
st = set()
for v in permutations(S):
    st.add("".join(v))
print(len(st) - 1)
0