結果

問題 No.52 よくある文字列の問題
ユーザー ronpooronpoo
提出日時 2023-08-24 11:15:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 292 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 62,080 KB
最終ジャッジ日時 2024-06-02 03:06:27
合計ジャッジ時間 1,258 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,232 KB
testcase_01 AC 36 ms
52,292 KB
testcase_02 AC 58 ms
62,080 KB
testcase_03 AC 34 ms
52,292 KB
testcase_04 AC 42 ms
61,536 KB
testcase_05 AC 42 ms
61,888 KB
testcase_06 AC 42 ms
61,560 KB
testcase_07 AC 43 ms
61,456 KB
testcase_08 AC 35 ms
53,120 KB
testcase_09 AC 34 ms
52,196 KB
testcase_10 AC 34 ms
53,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
L = len(S)

ss = set()
for i in range(2**L):
    v = ''
    head = 0
    tail = L-1
    for j in range(L):
        if i & 1<<j == 0:
            v += S[head]
            head += 1
        else:
            v += S[tail]
            tail -= 1
    ss.add(v)

ans = len(ss)
print(ans)
0