結果

問題 No.170 スワップ文字列(Easy)
ユーザー 双六双六
提出日時 2020-07-27 02:27:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 5,000 ms
コード長 457 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 89,980 KB
最終ジャッジ日時 2024-06-28 19:53:16
合計ジャッジ時間 2,262 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,708 KB
testcase_01 AC 73 ms
89,940 KB
testcase_02 AC 66 ms
81,892 KB
testcase_03 AC 67 ms
82,360 KB
testcase_04 AC 67 ms
82,616 KB
testcase_05 AC 78 ms
89,664 KB
testcase_06 AC 78 ms
89,980 KB
testcase_07 AC 49 ms
65,164 KB
testcase_08 AC 66 ms
82,024 KB
testcase_09 AC 64 ms
82,208 KB
testcase_10 AC 70 ms
84,560 KB
testcase_11 AC 35 ms
53,892 KB
testcase_12 AC 36 ms
55,428 KB
testcase_13 AC 36 ms
54,580 KB
testcase_14 AC 35 ms
54,928 KB
testcase_15 AC 38 ms
60,012 KB
testcase_16 AC 39 ms
53,420 KB
testcase_17 AC 39 ms
55,052 KB
testcase_18 AC 40 ms
54,588 KB
testcase_19 AC 39 ms
54,348 KB
testcase_20 AC 38 ms
54,700 KB
testcase_21 AC 42 ms
59,864 KB
testcase_22 AC 39 ms
54,112 KB
testcase_23 AC 36 ms
54,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import sys; input = sys.stdin.buffer.readline
# sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")
import itertools

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	S = list(input())
	D = defaultdict(int)
	P = list(itertools.permutations(S, len(S)))
	for i in range(len(P)):
		D["".join(P[i])] += 1

	# print(D)
	print(len(D) - 1)



if __name__ == '__main__':
	main()
0