結果
問題 | No.314 ケンケンパ |
ユーザー | tsuchinaga |
提出日時 | 2019-03-25 11:03:54 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 52 ms / 1,000 ms |
コード長 | 720 bytes |
コンパイル時間 | 13,026 ms |
コンパイル使用メモリ | 242,236 KB |
実行使用メモリ | 8,088 KB |
最終ジャッジ日時 | 2024-10-07 14:42:02 |
合計ジャッジ時間 | 12,409 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
8,088 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
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 | AC | 1 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 1 ms
6,816 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 1 ms
6,816 KB |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | AC | 6 ms
6,816 KB |
testcase_18 | AC | 26 ms
7,960 KB |
testcase_19 | AC | 52 ms
8,080 KB |
ソースコード
package main import ( "fmt" "math" ) func main() { var n int _, _ = fmt.Scan(&n) mod := int(math.Pow10(9)) + 7 k := []int{0, 1, 0} // 0: ケンが0回連続している状態, 1: ケンが1回連続している状態, 2: ケンが2回連続している状態 // 状態の遷移 // [1, 0, 0] -> [0, 1, 0] // パの状態からはケンしかできない // [0, 1, 0] -> [1, 0, 1] // ケンの状態からはパかケンを選択できる // [0, 0, 1] -> [1, 0, 0] // ケンケンの状態からはパしかできない for i := 1; i < n; i++ { t := make([]int, 3) t[0] = (k[1] + k[2]) % mod t[1] += k[0] t[2] += k[1] // fmt.Println(i, k, t) k = t } fmt.Println((k[0] + k[1] + k[2]) % mod) }