結果

問題 No.52 よくある文字列の問題
ユーザー nohakai3nohakai3
提出日時 2022-10-31 15:03:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 308 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 64,512 KB
最終ジャッジ日時 2024-07-08 04:05:37
合計ジャッジ時間 1,279 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,760 KB
testcase_01 AC 35 ms
53,120 KB
testcase_02 AC 53 ms
64,128 KB
testcase_03 AC 35 ms
53,376 KB
testcase_04 AC 43 ms
64,256 KB
testcase_05 AC 44 ms
64,256 KB
testcase_06 AC 42 ms
64,512 KB
testcase_07 AC 42 ms
63,232 KB
testcase_08 AC 37 ms
59,136 KB
testcase_09 AC 37 ms
53,376 KB
testcase_10 AC 35 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
from itertools import product


s=list(input())
t=s.copy()
n=len(s)
p=set()
for bits in product([0,1],repeat=n):
    d=deque(s)
    ans=""
    for x in bits:
        if x==0:
            ans+=d.pop()
        else:
            ans+=d.popleft()
    p.add(ans)


print(len(p))
    
0