結果

問題 No.430 文字列検索
ユーザー jugemjugemjugemjugemjugemjugem
提出日時 2016-10-06 00:04:30
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 688 bytes
コンパイル時間 10,183 ms
コンパイル使用メモリ 237,620 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-10 00:09:51
合計ジャッジ時間 11,605 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 175 ms
5,248 KB
testcase_02 AC 74 ms
5,248 KB
testcase_03 AC 73 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 68 ms
5,248 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 73 ms
5,248 KB
testcase_17 AC 73 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
    "bufio"
    "fmt"
    "os"
    "strconv"
)
import "strings"

func main() {
  var sc = bufio.NewScanner(os.Stdin)
  var os, ns,t string
  var n int
  var c int
  var err error

  if sc.Scan() {
    os = sc.Text()
  }
  fmt.Scan(&n)
  if sc.Scan() {
    n ,err = strconv.Atoi(sc.Text())
    if err != nil {
      fmt.Print("error")
    }
  }
  c = 0
  var i int
  for i = 0; i < n; i++ {
    ns = os
    if sc.Scan() {
      t = sc.Text()
      var pos int
      pos = strings.Index(ns,t )
      ns = ns[pos+1:len(ns)]
      for ; pos != -1 ; {
        c += 1
        pos = strings.Index(ns,t )
        ns = ns[pos+1:len(ns)]
      }
    }
  }
  fmt.Println(c)
}
0