結果
問題 | No.430 文字列検索 |
ユーザー | yuki2006 |
提出日時 | 2016-10-02 23:44:40 |
言語 | Go (1.22.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,804 bytes |
コンパイル時間 | 14,602 ms |
コンパイル使用メモリ | 221,308 KB |
実行使用メモリ | 120,500 KB |
最終ジャッジ日時 | 2024-11-10 00:05:03 |
合計ジャッジ時間 | 14,605 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,640 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
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 | -- | - |
ソースコード
package main import ( "bufio" "os" "strconv" "fmt" ) type Scanner struct { r *bufio.Reader buf []byte p int } func NewScanner() *Scanner { rdr := bufio.NewReaderSize(os.Stdin, 1000) return &Scanner{r:rdr} } func (s *Scanner) Next() string { s.pre() start := s.p for ; s.p < len(s.buf); s.p++ { if s.buf[s.p] == ' ' { break } } result := string(s.buf[start:s.p]) s.p++ return result } func (s *Scanner) NextLine() string { s.pre() start := s.p s.p = len(s.buf) return string(s.buf[start:]) } func (s *Scanner) NextInt() int { v, _ := strconv.Atoi(s.Next()) return v } func (s *Scanner) NextIntArray() []int { s.pre() start := s.p result := []int{} for ; s.p < len(s.buf); s.p++ { if s.buf[s.p] == ' ' { v, _ := strconv.Atoi(string(s.buf[start:s.p])) result = append(result, v) start = s.p + 1 } } v, _ := strconv.Atoi(string(s.buf[start:s.p])) result = append(result, v) return result } func (s *Scanner) NextMap() map[int]bool { s.pre() start := s.p mp := map[int]bool{} for ; s.p < len(s.buf); s.p++ { if s.buf[s.p] == ' ' { v, _ := strconv.Atoi(string(s.buf[start:s.p])) mp[v] = true start = s.p + 1 } } v, _ := strconv.Atoi(string(s.buf[start:s.p])) mp[v] = true return mp } func (s *Scanner) pre() { if s.p >= len(s.buf) { s.readLine() s.p = 0 } } func (s *Scanner) readLine() { s.buf = make([]byte, 0) for { l, p, e := s.r.ReadLine() if e != nil { panic(e) } s.buf = append(s.buf, l...) if !p { break } } } func main() { sc := NewScanner() S := sc.NextLine() mp := map[string]int{} for i := 0; i < len(S); i++ { for j := i + 1; j <= len(S); j++ { mp[S[i:j]]++ } } N := sc.NextInt() count := 0 for i := 0; i < N; i++ { count += mp[sc.NextLine()] } fmt.Println(count) }