結果

問題 No.599 回文かい
ユーザー GrayCoderGrayCoder
提出日時 2017-11-25 00:15:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 585 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-05-05 11:49:47
合計ジャッジ時間 5,730 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 80 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
evil_0.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

def main():
    S = input()

    mask = 0
    n = len(S)
    kaibun = 0
    while mask < (1<<(n-1)):
        i = 0
        s = list(S)
        while i < n - 1:
            if mask & (1<<i):
                s[i] = s[i] + ','
            i += 1
        mask += 1

        text = (''.join(s).split(','))
        i = 0
        j = len(text) - 1
        while j - i > 0:
            if text[i] == text[j]:
                i += 1
                j -= 1
            else:
                break
        else:
            kaibun += 1

    print(kaibun)

main()
0