結果

問題 No.52 よくある文字列の問題
ユーザー kohei2019kohei2019
提出日時 2021-03-18 11:40:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 5,000 ms
コード長 363 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 67,584 KB
最終ジャッジ日時 2024-11-16 10:47:46
合計ジャッジ時間 1,738 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
59,904 KB
testcase_01 AC 53 ms
59,904 KB
testcase_02 AC 79 ms
67,072 KB
testcase_03 AC 49 ms
59,904 KB
testcase_04 AC 68 ms
67,072 KB
testcase_05 AC 66 ms
67,584 KB
testcase_06 AC 66 ms
67,072 KB
testcase_07 AC 65 ms
65,536 KB
testcase_08 AC 53 ms
60,544 KB
testcase_09 AC 52 ms
59,904 KB
testcase_10 AC 53 ms
60,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
import copy
S = input()
N = len(S)
ansset = set()
Sls = list(S)
Sdeq = collections.deque(Sls)
for i in range(2**N):
    word = []
    Sdeq1 = copy.copy(Sdeq)
    for j in range(N):
        if (i >> j)&1:
            word.append(Sdeq1.pop())
        else:
            word.append(Sdeq1.popleft())
    ansset.add(''.join(word))
print(len(ansset))
0