結果
問題 | No.495 (^^*) Easy |
ユーザー | k.h |
提出日時 | 2019-08-05 18:19:40 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 268 bytes |
コンパイル時間 | 11,104 ms |
コンパイル使用メモリ | 220,216 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-18 13:39:36 |
合計ジャッジ時間 | 11,646 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,812 KB |
testcase_02 | AC | 1 ms
6,812 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | WA | - |
ソースコード
package main import ( "bufio" "fmt" "os" "strings" ) func main() { sc := bufio.NewScanner(os.Stdin) sc.Scan() s := sc.Text() l := strings.Count(s, "(^^*)") r := strings.Count(s, "(*^^)") if l == -1 { l = 0 } if r == -1 { r = 0 } fmt.Println(l, r) }