結果

問題 No.52 よくある文字列の問題
ユーザー 👑 KazunKazun
提出日時 2020-10-27 15:59:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 5,000 ms
コード長 284 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 64,768 KB
最終ジャッジ日時 2024-07-21 21:56:26
合計ジャッジ時間 1,640 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,504 KB
testcase_01 AC 46 ms
53,504 KB
testcase_02 AC 69 ms
64,640 KB
testcase_03 AC 47 ms
53,632 KB
testcase_04 AC 61 ms
64,512 KB
testcase_05 AC 60 ms
64,768 KB
testcase_06 AC 60 ms
64,640 KB
testcase_07 AC 59 ms
63,360 KB
testcase_08 AC 53 ms
58,368 KB
testcase_09 AC 47 ms
53,376 KB
testcase_10 AC 48 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
from collections import deque

S=input()
N=len(S)

A=set()

for T in product([0,1],repeat=N):
    Q=deque(S)
    X=""
    for x in T:
        if x==0:
            y=Q.popleft()
        else:
            y=Q.pop()
        X+=y

    A.add(X)

print(len(A))
0