結果
問題 | No.1595 The Final Digit |
ユーザー | Comi |
提出日時 | 2021-07-09 22:59:11 |
言語 | Go (1.22.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,117 bytes |
コンパイル時間 | 14,808 ms |
コンパイル使用メモリ | 223,152 KB |
実行使用メモリ | 11,872 KB |
最終ジャッジ日時 | 2024-07-01 18:05:07 |
合計ジャッジ時間 | 15,702 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | AC | 4 ms
11,868 KB |
testcase_05 | AC | 4 ms
11,872 KB |
testcase_06 | AC | 4 ms
11,872 KB |
testcase_07 | AC | 4 ms
11,868 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 4 ms
11,872 KB |
testcase_13 | AC | 4 ms
11,872 KB |
testcase_14 | AC | 4 ms
11,872 KB |
testcase_15 | AC | 4 ms
11,872 KB |
testcase_16 | AC | 4 ms
11,868 KB |
testcase_17 | RE | - |
testcase_18 | AC | 4 ms
11,872 KB |
testcase_19 | AC | 4 ms
11,868 KB |
ソースコード
package main import ( "bufio" "fmt" "os" ) var reader = bufio.NewReader(os.Stdin) var writer = bufio.NewWriter(os.Stdout) func toDigits(x, base int) []int { if x == 0 { return []int{0} } ans := make([]int, 0) for x != 0 { ans = append(ans, x%base) x = x / base } return ans } func main() { defer writer.Flush() var p, q, r, k int fmt.Fscan(reader, &p) fmt.Fscan(reader, &q) fmt.Fscan(reader, &r) fmt.Fscan(reader, &k) a := make([]int, 1000000) cnt := 0 m2 := 0 for i := 1; i <= k; i++ { if i == 1 { a[i] = p % 10 continue } if i == 2 { a[i] = q % 10 continue } if i == 3 { a[i] = r % 10 continue } if a[i-1] == r%10 && a[i-2] == q%10 && a[i-3] == p%10 { cnt++ if cnt == 2 { m2 = i - 4 break } } a[i] = (a[i-1] + a[i-2] + a[i-3]) % 10 } n2 := k % m2 a = make([]int, 1000000) for i := 1; i <= n2; i++ { if i == 1 { a[i] = p % 10 continue } if i == 2 { a[i] = q % 10 continue } if i == 3 { a[i] = r % 10 continue } a[i] = (a[i-1] + a[i-2] + a[i-3]) % 10 } fmt.Fprintf(writer, "%v", a[n2]) }