結果
問題 | No.346 チワワ数え上げ問題 |
ユーザー | yuki2006 |
提出日時 | 2016-02-26 02:25:34 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 102 ms / 2,000 ms |
コード長 | 331 bytes |
コンパイル時間 | 11,008 ms |
コンパイル使用メモリ | 226,064 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-10 22:52:44 |
合計ジャッジ時間 | 12,952 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 |
ソースコード
package main import "fmt" func main() { var s string fmt.Scanf("%s", &s) total := 0 countW := 0 for i := 0; i < len(s); i++ { if s[i] == 'w' { countW += 1 } } for i := 0; i < len(s); i++ { if s[i] == 'c' { total += countW * (countW - 1) / 2 }else if s[i] == 'w' { countW -= 1 } } fmt.Println(total) }