結果
問題 | No.891 隣接3項間の漸化式 |
ユーザー | kat0rik |
提出日時 | 2019-09-21 13:48:41 |
言語 | Go (1.22.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 412 bytes |
コンパイル時間 | 14,609 ms |
コンパイル使用メモリ | 243,172 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-18 18:30:38 |
合計ジャッジ時間 | 19,894 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 51 ms
5,248 KB |
testcase_04 | AC | 100 ms
5,376 KB |
testcase_05 | AC | 104 ms
5,376 KB |
testcase_06 | AC | 137 ms
5,376 KB |
testcase_07 | AC | 95 ms
5,376 KB |
testcase_08 | AC | 86 ms
5,376 KB |
testcase_09 | AC | 115 ms
5,376 KB |
testcase_10 | AC | 21 ms
5,376 KB |
testcase_11 | AC | 56 ms
5,376 KB |
testcase_12 | AC | 161 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 103 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 13 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 17 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | TLE | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
ソースコード
package main import "fmt" func main() { var a, b, n int var xn2, xn1, xn int xn1 = 1 mod := int(1e9) + 7 fmt.Scan(&a, &b, &n) if n == 0 { fmt.Println(0) } else if n == 1 { fmt.Println(1) } else { for i := 0; i < n-1; i++ { xn = ((a%mod)*(xn1%mod) + (b%mod)*(xn2%mod)) % mod // fmt.Printf("i %d, xn %d, xn1 %d, xn2 %d\n", i, xn, xn1, xn2) xn2 = xn1 xn1 = xn } fmt.Println(xn) } }