結果

問題 No.52 よくある文字列の問題
ユーザー colognecologne
提出日時 2022-01-24 20:03:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 5,000 ms
コード長 334 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 61,044 KB
最終ジャッジ日時 2024-12-14 21:52:20
合計ジャッジ時間 1,577 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,892 KB
testcase_01 AC 39 ms
52,908 KB
testcase_02 AC 45 ms
60,404 KB
testcase_03 AC 37 ms
52,012 KB
testcase_04 AC 45 ms
61,044 KB
testcase_05 AC 44 ms
60,716 KB
testcase_06 AC 45 ms
60,700 KB
testcase_07 AC 38 ms
52,988 KB
testcase_08 AC 38 ms
52,560 KB
testcase_09 AC 38 ms
53,008 KB
testcase_10 AC 37 ms
53,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


def input(): return sys.stdin.readline().rstrip()


def main():
    s = input()
    ans = set()

    def bktk(c, r):
        if r == '':
            ans.add(c)
        else:
            bktk(c + r[-1], r[:-1])
            bktk(c + r[0], r[1:])

    bktk('', s)
    print(len(ans))


if __name__ == '__main__':
    main()
0