結果
| 問題 | No.170 スワップ文字列(Easy) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-02-08 17:40:39 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
AC
|
| 実行時間 | 186 ms / 5,000 ms |
| コード長 | 207 bytes |
| 記録 | |
| コンパイル時間 | 537 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 19,160 KB |
| 最終ジャッジ日時 | 2026-03-08 08:27:36 |
| 合計ジャッジ時間 | 4,368 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 |
ソースコード
from itertools import permutations
s=input()
n=len(s)
ans=set()
for seq in permutations(range(n)):
tmp=''
for i in range(n):
tmp+=s[seq[i]]
if tmp!=s:
ans.add(tmp)
print(len(ans))