結果

問題 No.170 スワップ文字列(Easy)
ユーザー dangodango
提出日時 2023-06-15 20:52:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 5,000 ms
コード長 77 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 86,872 KB
実行使用メモリ 83,164 KB
最終ジャッジ日時 2023-09-05 23:42:54
合計ジャッジ時間 4,034 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,316 KB
testcase_01 AC 90 ms
83,044 KB
testcase_02 AC 87 ms
76,116 KB
testcase_03 AC 84 ms
76,188 KB
testcase_04 AC 84 ms
76,304 KB
testcase_05 AC 89 ms
83,044 KB
testcase_06 AC 91 ms
83,164 KB
testcase_07 AC 75 ms
75,556 KB
testcase_08 AC 85 ms
76,140 KB
testcase_09 AC 86 ms
76,072 KB
testcase_10 AC 88 ms
79,860 KB
testcase_11 AC 68 ms
71,312 KB
testcase_12 AC 71 ms
71,588 KB
testcase_13 AC 67 ms
71,640 KB
testcase_14 AC 70 ms
71,388 KB
testcase_15 AC 73 ms
75,100 KB
testcase_16 AC 70 ms
71,576 KB
testcase_17 AC 68 ms
71,520 KB
testcase_18 AC 70 ms
74,996 KB
testcase_19 AC 70 ms
71,508 KB
testcase_20 AC 67 ms
71,528 KB
testcase_21 AC 72 ms
74,928 KB
testcase_22 AC 71 ms
75,268 KB
testcase_23 AC 69 ms
71,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations
print(len(set(permutations(input()))) - 1)
0