結果

問題 No.52 よくある文字列の問題
ユーザー netyo715netyo715
提出日時 2022-08-04 00:14:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 272 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 64,980 KB
最終ジャッジ日時 2024-09-13 18:41:32
合計ジャッジ時間 1,517 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,724 KB
testcase_01 AC 42 ms
54,140 KB
testcase_02 AC 52 ms
64,980 KB
testcase_03 AC 41 ms
54,980 KB
testcase_04 AC 50 ms
64,160 KB
testcase_05 AC 51 ms
64,468 KB
testcase_06 AC 50 ms
63,424 KB
testcase_07 AC 45 ms
54,740 KB
testcase_08 AC 41 ms
53,596 KB
testcase_09 AC 41 ms
53,976 KB
testcase_10 AC 42 ms
54,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
S = list(input())

ans = set()
def f(S: list, S2: list):
    if not S:
        ans.add("".join(S2))
        return
    S2.append(S[0])
    f(S[1:], S2)
    S2.pop()
    S2.append(S[-1])
    f(S[:-1], S2)
    S2.pop()

f(S, [])
print(len(ans))
0