結果

問題 No.1811 EQUIV Ten
ユーザー ytftytft
提出日時 2022-02-13 16:22:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,662 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 119,348 KB
最終ジャッジ日時 2024-06-29 05:40:59
合計ジャッジ時間 30,665 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 515 ms
44,080 KB
testcase_01 AC 516 ms
43,952 KB
testcase_02 AC 515 ms
44,216 KB
testcase_03 AC 513 ms
43,696 KB
testcase_04 AC 512 ms
44,332 KB
testcase_05 AC 509 ms
43,948 KB
testcase_06 AC 516 ms
43,956 KB
testcase_07 AC 524 ms
43,572 KB
testcase_08 AC 510 ms
43,696 KB
testcase_09 AC 511 ms
44,048 KB
testcase_10 AC 511 ms
43,956 KB
testcase_11 AC 1,475 ms
106,160 KB
testcase_12 AC 1,571 ms
111,284 KB
testcase_13 AC 1,662 ms
116,780 KB
testcase_14 AC 1,657 ms
119,080 KB
testcase_15 AC 1,644 ms
119,348 KB
testcase_16 AC 517 ms
44,136 KB
testcase_17 AC 512 ms
44,328 KB
testcase_18 AC 514 ms
44,200 KB
testcase_19 AC 506 ms
43,572 KB
testcase_20 AC 556 ms
45,092 KB
testcase_21 AC 551 ms
45,224 KB
testcase_22 AC 518 ms
44,084 KB
testcase_23 AC 889 ms
67,376 KB
testcase_24 AC 591 ms
46,900 KB
testcase_25 AC 512 ms
44,204 KB
testcase_26 AC 799 ms
62,892 KB
testcase_27 AC 522 ms
43,564 KB
testcase_28 AC 512 ms
43,692 KB
testcase_29 AC 512 ms
44,080 KB
testcase_30 AC 1,471 ms
104,500 KB
testcase_31 AC 527 ms
44,084 KB
testcase_32 AC 590 ms
48,180 KB
testcase_33 AC 597 ms
47,916 KB
testcase_34 AC 1,380 ms
100,668 KB
testcase_35 AC 801 ms
62,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
N=int(input())
if N<4:
	print(0)
	exit()
dp=[[1 for i in range(8)] for i in range(N-2)]
ans=1
temp=2
rem=N
mod=10**9+7
for i in range(N-3):
	for j in range(8):
		dp[i+1][j]=(dp[i][j//2]+dp[i][j//2+4])%mod
	dp[i+1][2]=(dp[i+1][2]-dp[i][5]+mod)%mod
while rem:
	if rem%2:
		ans=(ans*temp)%mod
	temp=(temp*temp)%mod
	rem//=2
print((ans-sum(dp[N-3])+mod*8)%mod)
0