結果

問題 No.52 よくある文字列の問題
ユーザー あかりきあかりき
提出日時 2021-02-08 11:06:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 5,000 ms
コード長 265 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 66,044 KB
最終ジャッジ日時 2024-07-05 07:22:44
合計ジャッジ時間 1,432 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,388 KB
testcase_01 AC 35 ms
53,936 KB
testcase_02 AC 45 ms
65,608 KB
testcase_03 AC 34 ms
53,972 KB
testcase_04 AC 44 ms
65,208 KB
testcase_05 AC 46 ms
66,044 KB
testcase_06 AC 46 ms
65,736 KB
testcase_07 AC 44 ms
64,772 KB
testcase_08 AC 34 ms
55,524 KB
testcase_09 AC 33 ms
54,120 KB
testcase_10 AC 34 ms
54,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy
s=list(input())
n=len(s)
l=[]
for i in range(2**n):
  x=format(i,'0'+str(n)+'b')
  s2=copy.copy(s)
  l2=[]
  for j in range(n):
    if x[j]=='0':
      l2.append(s2.pop(0))
    else:
      l2.append(s2.pop(-1))
  l.append(''.join(l2))
print(len(set(l)))
0