結果

問題 No.1595 The Final Digit
ユーザー ks2mks2m
提出日時 2021-07-09 21:42:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 847 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 81,456 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-07-01 15:40:33
合計ジャッジ時間 5,948 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,132 KB
testcase_01 AC 134 ms
54,140 KB
testcase_02 AC 136 ms
53,668 KB
testcase_03 AC 137 ms
53,660 KB
testcase_04 AC 137 ms
53,544 KB
testcase_05 AC 139 ms
54,024 KB
testcase_06 AC 138 ms
53,660 KB
testcase_07 AC 138 ms
53,944 KB
testcase_08 AC 138 ms
53,932 KB
testcase_09 AC 136 ms
54,028 KB
testcase_10 AC 138 ms
53,792 KB
testcase_11 AC 136 ms
54,228 KB
testcase_12 AC 137 ms
53,736 KB
testcase_13 AC 136 ms
53,908 KB
testcase_14 AC 138 ms
53,712 KB
testcase_15 AC 139 ms
53,992 KB
testcase_16 AC 140 ms
53,936 KB
testcase_17 AC 143 ms
53,804 KB
testcase_18 AC 138 ms
53,760 KB
testcase_19 AC 137 ms
54,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int[] a = new int[1000];
		a[0] = sc.nextInt() % 10;
		a[1] = sc.nextInt() % 10;
		a[2] = sc.nextInt() % 10;
		long k = sc.nextLong() - 1;
		sc.close();

		Map<Integer, Integer> map = new HashMap<>();
		int s = 0;
		int d = 0;
		map.put(a[0] * 100 + a[1] * 10 + a[2], 2);
		for (int i = 3; i < a.length; i++) {
			a[i] = a[i - 3] + a[i - 2] + a[i - 1];
			a[i] %= 10;
			if (i == k) {
				System.out.println(a[i]);
				return;
			}
			int v = a[i - 2] * 100 + a[i - 1] * 10 + a[i];
			if (map.containsKey(v)) {
				s = map.get(v);
				d = i - s;
				break;
			}
			map.put(v, i);
		}
		int x = (int) ((k - s) % d);
		System.out.println(a[s + x]);
	}
}
0