結果

問題 No.52 よくある文字列の問題
ユーザー ABKZABKZ
提出日時 2023-11-22 00:48:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 252 bytes
コンパイル時間 528 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 61,184 KB
最終ジャッジ日時 2024-09-26 07:22:11
合計ジャッジ時間 1,778 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,328 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 53 ms
60,544 KB
testcase_03 AC 46 ms
52,096 KB
testcase_04 AC 54 ms
61,184 KB
testcase_05 AC 53 ms
60,544 KB
testcase_06 AC 53 ms
60,672 KB
testcase_07 AC 53 ms
60,672 KB
testcase_08 AC 42 ms
51,456 KB
testcase_09 AC 42 ms
51,456 KB
testcase_10 AC 46 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

a = [[0], [-1]]
for i in range(len(S)-2):
    f = [[0] + x for x in a]
    r = [[-1] + x for x in a]
    a = f + r

b = set()
for p in a:
    c = list(S)
    d = ""
    for i in p:
        d += c.pop(i)
    b.add(d)
        
print(len(b))
0