結果

問題 No.1073 無限すごろく
ユーザー anagohirameanagohirame
提出日時 2020-06-05 21:49:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 846 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 71,424 KB
最終ジャッジ日時 2024-05-09 20:48:14
合計ジャッジ時間 2,596 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,232 KB
testcase_01 AC 32 ms
53,356 KB
testcase_02 AC 41 ms
62,632 KB
testcase_03 AC 34 ms
53,944 KB
testcase_04 AC 36 ms
52,520 KB
testcase_05 AC 37 ms
53,512 KB
testcase_06 AC 38 ms
53,108 KB
testcase_07 AC 38 ms
54,188 KB
testcase_08 AC 38 ms
53,700 KB
testcase_09 AC 38 ms
53,600 KB
testcase_10 AC 42 ms
58,788 KB
testcase_11 AC 42 ms
58,496 KB
testcase_12 AC 42 ms
59,616 KB
testcase_13 AC 47 ms
62,212 KB
testcase_14 AC 47 ms
62,692 KB
testcase_15 AC 46 ms
63,732 KB
testcase_16 AC 48 ms
62,456 KB
testcase_17 AC 47 ms
63,652 KB
testcase_18 AC 47 ms
63,884 KB
testcase_19 AC 47 ms
62,740 KB
testcase_20 AC 47 ms
63,116 KB
testcase_21 AC 52 ms
66,184 KB
testcase_22 AC 47 ms
62,244 KB
testcase_23 AC 54 ms
67,380 KB
testcase_24 AC 55 ms
67,600 KB
testcase_25 AC 54 ms
68,056 KB
testcase_26 AC 54 ms
68,536 KB
testcase_27 AC 54 ms
67,284 KB
testcase_28 AC 57 ms
70,536 KB
testcase_29 AC 58 ms
71,424 KB
testcase_30 AC 56 ms
71,420 KB
testcase_31 AC 56 ms
70,308 KB
testcase_32 AC 57 ms
70,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9+7

def mat_dot(one, two, mod):
	return [[sum([(one[i][k]*two[k][j])%mod for k in range(max(len(two), len(one[0])))])%mod for j in range(len(two[0]))] for i in range(len(one))]

def mat_pow(mat, exp, mod):
	size = len(mat)
	res = [[0 for _ in range(size)] for _ in range(size)]
	for i in range(size):
		res[i][i] = 1
	cnt = 0
	while (1<<cnt) <= exp:
		if (exp>>cnt)&1:
			res = mat_dot(res, mat, mod)
		mat = mat_dot(mat, mat, mod)
		cnt += 1
	return res

n = int(input())
s = 166666668

p = [1, s]
for _ in range(4):
	p.append((p[-1] * 7 * s) % MOD)

if n < 6:
	print(p[n])

else:
	mat = [
	[0, 1, 0, 0, 0, 0], 
	[0, 0, 1, 0, 0, 0], 
	[0, 0, 0, 1, 0, 0], 
	[0, 0, 0, 0, 1, 0], 
	[0, 0, 0, 0, 0, 1], 
	[s, s, s, s, s, s]
	]

	res = mat_pow(mat, n-5, MOD)
	ans = 0
	for i in range(6):
		ans += p[i] * res[5][i]
		ans %= MOD

	print(ans)
0