結果

問題 No.52 よくある文字列の問題
ユーザー yakeshibayakeshiba
提出日時 2021-03-12 09:05:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 5,000 ms
コード長 226 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 60,688 KB
最終ジャッジ日時 2024-10-13 18:20:59
合計ジャッジ時間 1,662 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,280 KB
testcase_01 AC 38 ms
52,616 KB
testcase_02 AC 46 ms
60,564 KB
testcase_03 AC 38 ms
52,296 KB
testcase_04 AC 45 ms
60,216 KB
testcase_05 AC 46 ms
60,688 KB
testcase_06 AC 48 ms
60,384 KB
testcase_07 AC 40 ms
52,256 KB
testcase_08 AC 38 ms
53,220 KB
testcase_09 AC 38 ms
52,280 KB
testcase_10 AC 38 ms
53,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
n = len(S)

d = {}

def solve(S,T):
    if len(T) == n:
        d[T] = 1
        return
    tmp1 = T+S[0]
    tmp2 = T+S[-1]
    solve(S[1:],tmp1)
    solve(S[:len(S)-1],tmp2)
    
solve(S,"")
print(len(d.keys()))
0