結果
問題 |
No.1005 BOT対策
|
ユーザー |
![]() |
提出日時 | 2020-03-07 13:14:22 |
言語 | Go (1.23.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,235 bytes |
コンパイル時間 | 13,082 ms |
コンパイル使用メモリ | 239,844 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-14 12:21:37 |
合計ジャッジ時間 | 12,742 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 25 WA * 2 |
ソースコード
package main import ( "bufio" "fmt" "math" "os" "strconv" "strings" ) func exec(stdin *Stdin, stdout *Stdout) { s := stdin.Read() t := stdin.Read() if len(t) == 1 { if strings.Count(s, t) == 0 { stdout.Println(0) } else { stdout.Println(-1) } return } c := 0 for { x := strings.Index(s, t) if x == -1 { break } c++ s = s[x+len(t):] } stdout.Println(c) } func main() { stdout := NewStdout() defer stdout.Flush() exec(NewStdin(bufio.ScanWords), stdout) } type Stdin struct { stdin *bufio.Scanner } func NewStdin(split bufio.SplitFunc) *Stdin { s := Stdin{bufio.NewScanner(os.Stdin)} s.stdin.Split(split) s.stdin.Buffer(make([]byte, bufio.MaxScanTokenSize), int(math.MaxInt32)) return &s } func (s *Stdin) Read() string { s.stdin.Scan() return s.stdin.Text() } func (s *Stdin) ReadInt() int { n, _ := strconv.Atoi(s.Read()) return n } func (s *Stdin) ReadFloat64() float64 { n, _ := strconv.ParseFloat(s.Read(), 64) return n } type Stdout struct { stdout *bufio.Writer } func NewStdout() *Stdout { return &Stdout{bufio.NewWriter(os.Stdout)} } func (s *Stdout) Flush() { s.stdout.Flush() } func (s *Stdout) Println(a ...interface{}) { fmt.Fprintln(s.stdout, a...) }