結果
問題 | No.171 スワップ文字列(Med) |
ユーザー | yuki2006 |
提出日時 | 2015-04-02 21:03:44 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,320 bytes |
コンパイル時間 | 10,967 ms |
コンパイル使用メモリ | 219,800 KB |
実行使用メモリ | 11,920 KB |
最終ジャッジ日時 | 2024-10-10 03:34:42 |
合計ジャッジ時間 | 11,918 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 4 ms
9,808 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 1 ms
6,816 KB |
testcase_12 | AC | 1 ms
6,820 KB |
ソースコード
package main import ( "bufio" "os" "strconv" "strings" "fmt" ) var s = bufio.NewScanner(os.Stdin) func next() string { s.Split(bufio.ScanWords) s.Scan() return s.Text() } func nextLine() string { s.Split(bufio.ScanLines) s.Scan() if nil != s.Err() { panic(s.Err()) } return s.Text() } func nextInt() int { i, e := strconv.Atoi(next()) if e != nil { panic(e) } return i } func nextLong() int64 { i, e := strconv.ParseInt(next(), 10, 64) if e != nil { panic(e) } return i } //パスカルの三角形でコンビネーション計算 func nCr(n int) [][]int { var dp = make([][]int, n+10) dp[0] = make([]int, n+10) dp[0][0] = 1 for i := 1; i <= n; i++ { dp[i] = make([]int, n+10) dp[i][0] = dp[i-1][0] for j := i; j > 0; j-- { dp[i][j] = dp[i-1][j]+dp[i-1][j-1] } } return dp } func mapToString(arr []int) []string { ret := make([]string, len(arr)) for i := 0; i < len(arr); i++ { ret[i] = strconv.Itoa(arr[i]) } return ret } func PrintI(args ...int) { fmt.Println(strings.Join(mapToString(args), " ")) } func main() { S := nextLine() var set = map[rune]int{} for _, s := range S { set[s]+=1 } var leng = len(S) dp := nCr(len(S)) sum := 1 for _, v := range set { sum*=dp[leng][v] leng-=v sum%=573 } sum+=573-1 sum%=573 PrintI(sum) }