結果
問題 | No.1595 The Final Digit |
ユーザー | Comi |
提出日時 | 2021-07-17 00:28:56 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 638 bytes |
コンパイル時間 | 11,415 ms |
コンパイル使用メモリ | 222,964 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-06 12:01:21 |
合計ジャッジ時間 | 9,987 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,812 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | WA | - |
ソースコード
package main import ( "bufio" "fmt" "os" ) var reader = bufio.NewReader(os.Stdin) var writer = bufio.NewWriter(os.Stdout) func main() { defer writer.Flush() var p, q, r, k int fmt.Fscan(reader, &p, &q, &r, &k) a := make([]int, 1000000) a[1] = p % 10 a[2] = q % 10 a[3] = r % 10 used := make([]int, 1009) used[(a[1]+a[2]+a[3])%10] = 3 ans := k for i := 4; i <= k; i++ { a[i] = (a[i-1] + a[i-2] + a[i-3]) % 10 nex := (a[i]*100 + a[i-1]*10 + a[i-2]*1) % 10 if used[nex] != 0 { cycle := i - used[nex] ans = (k-used[nex])%cycle + used[nex] break } used[nex] = i } fmt.Fprintf(writer, "%v", a[ans]) }