結果
問題 | No.52 よくある文字列の問題 |
ユーザー | tsuchinaga |
提出日時 | 2019-04-06 00:05:04 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 520 bytes |
コンパイル時間 | 11,409 ms |
コンパイル使用メモリ | 227,392 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 05:38:56 |
合計ジャッジ時間 | 12,047 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 11 |
ソースコード
package main import ( "fmt" "math" "strconv" ) func main() { var s string _, _ = fmt.Scan(&s) r := []rune(s) l := len(r) if l == 1 { fmt.Println(1) return } m := make(map[string]int) for i := 0; i < int(math.Pow(2, float64(l-1))); i++ { front, back := 0, l-1 t := "" for _, c := range fmt.Sprintf("%0"+strconv.Itoa(l-1)+"b", i) { if c == '0' { t += string(r[front]) front++ } else { t += string(r[back]) back-- } } m[t+string(r[front])]++ } fmt.Println(len(m)) }