結果

問題 No.52 よくある文字列の問題
ユーザー KudeKude
提出日時 2020-09-07 01:34:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 291 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 65,920 KB
最終ジャッジ日時 2024-11-29 07:58:44
合計ジャッジ時間 1,309 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,120 KB
testcase_01 AC 42 ms
53,632 KB
testcase_02 AC 56 ms
65,920 KB
testcase_03 AC 42 ms
53,248 KB
testcase_04 AC 55 ms
65,664 KB
testcase_05 AC 55 ms
65,280 KB
testcase_06 AC 54 ms
65,792 KB
testcase_07 AC 54 ms
63,488 KB
testcase_08 AC 48 ms
58,496 KB
testcase_09 AC 41 ms
53,504 KB
testcase_10 AC 42 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
s = input()
l = len(s)
sset = set()
for b in range(1 << l):
    d = deque(s)
    t = []
    for i in range(l):
        if b >> i & 1:
            c = d.popleft()
        else:
            c = d.pop()
        t.append(c)
    sset.add(''.join(t))
print(len(sset))
0