結果
問題 | No.204 ゴールデン・ウィーク(2) |
ユーザー | gogotea |
提出日時 | 2015-05-08 23:52:03 |
言語 | Go1.4 (1.4.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,611 bytes |
コンパイル時間 | 426 ms |
コンパイル使用メモリ | 40,488 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-25 00:16:54 |
合計ジャッジ時間 | 1,788 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 1 ms
6,816 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 1 ms
6,816 KB |
testcase_26 | AC | 1 ms
6,820 KB |
testcase_27 | AC | 2 ms
6,816 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 1 ms
6,820 KB |
testcase_31 | AC | 1 ms
6,820 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 1 ms
6,820 KB |
testcase_35 | AC | 1 ms
6,820 KB |
testcase_36 | AC | 1 ms
6,820 KB |
testcase_37 | WA | - |
testcase_38 | AC | 1 ms
6,816 KB |
testcase_39 | WA | - |
testcase_40 | AC | 1 ms
6,820 KB |
testcase_41 | AC | 1 ms
6,816 KB |
testcase_42 | WA | - |
testcase_43 | AC | 1 ms
6,820 KB |
testcase_44 | AC | 2 ms
6,820 KB |
testcase_45 | AC | 2 ms
6,816 KB |
testcase_46 | AC | 1 ms
6,816 KB |
testcase_47 | WA | - |
testcase_48 | AC | 1 ms
6,816 KB |
ソースコード
package main import ( "bufio" "bytes" "fmt" "io" "os" "regexp" "strconv" "strings" ) func main() { sc := NewScanner(os.Stdin) d, _ := sc.NextInt() line1, _ := sc.NextLine() line2, _ := sc.NextLine() line := line1 + line2 fmt.Println(solve(d, line)) } func solve(d int, s string) int { src := []byte(s) if d <= 0 { return getMaxConsecutiveHolidays(src) } re := regexp.MustCompile(`x+`) indexes := re.FindAllIndex(src, -1) max := 0 if len(indexes) == 0 { max = 14 } for _, v := range indexes { start, end := v[0], v[1] len := end - start if len > d { len = d } repl := strings.Repeat("o", len) buf := []byte(s) copy(buf[start:], repl[:]) days := getMaxConsecutiveHolidays(buf) if days > max { max = days } } return max } func getMaxConsecutiveHolidays(s []byte) int { results := bytes.Split(s, []byte("x")) max := 0 for _, v := range results { if len(v) > max { max = len(v) } } return max } type scanner struct { *bufio.Scanner } func NewScanner(r io.Reader) *scanner { return &scanner{ bufio.NewScanner(r), } } func (s *scanner) Next() (string, error) { s.Scanner.Split(bufio.ScanWords) return s.nextToken() } func (s *scanner) NextLine() (string, error) { s.Scanner.Split(bufio.ScanLines) return s.nextToken() } func (s *scanner) nextToken() (string, error) { sc := s.Scanner if sc.Scan() { return sc.Text(), nil } if sc.Err() != nil { return "", sc.Err() } return "", io.EOF } func (s *scanner) NextInt() (int, error) { token, err := s.Next() if err != nil { return 0, err } return strconv.Atoi(token) }