結果
問題 | No.161 制限ジャンケン |
ユーザー | yuki2006 |
提出日時 | 2015-03-05 13:53:25 |
言語 | Go1.4 (1.4.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 824 bytes |
コンパイル時間 | 234 ms |
コンパイル使用メモリ | 33,728 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-03 20:12:00 |
合計ジャッジ時間 | 938 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
package main import ( "bufio" "os" "strconv" "fmt" ) var s = bufio.NewScanner(os.Stdin) func next() string { s.Split(bufio.ScanWords) s.Scan() return s.Text() } func nextInt() int { i, e := strconv.Atoi(next()) if e != nil { panic(e) } return i } func nextLong() int64 { i, e := strconv.ParseInt(next(), 10, 64) if e != nil { panic(e) } return i } func main() { D := [3]int{} D[0] = nextInt() D[1] = nextInt() D[2] = nextInt() S := next() point := 0 for i := 0; i < len(S); i++ { var P = 0 switch { case S[i] == 'G': P = 0 case S[i] == 'C': P = 1 case S[i] == 'P': P = 2 } for i := -1; i < 2; i++ { p := (P + i + 3) % 3 if D[p] > 0 { D[p]-=1 if i == -1 { point+=3 }else if i == 0 { point+=1 } break } } } fmt.Println(point) }