結果

問題 No.345 最小チワワ問題
ユーザー k.hk.h
提出日時 2019-08-05 12:25:15
言語 Go
(1.23.4)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 9,521 ms
コンパイル使用メモリ 228,812 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-18 13:29:37
合計ジャッジ時間 10,409 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import "fmt"

func main() {
	var s string
	fmt.Scan(&s)
	l := len(s)
	ans := 101
	for i := 0; i < l-2; i++ {
		for j := i + 1; j < l-1; j++ {
			for k := j + 1; k < l; k++ {
				if s[i] == 'c' && s[j] == 'w' && s[k] == 'w' {
					if ans > k-i+1 {
						ans = k - i + 1
					}
				}
			}
		}
	}
	if ans == 101 {
		ans = -1
	}
	fmt.Println(ans)
}
0