結果

問題 No.1811 EQUIV Ten
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-01-14 22:01:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 81,784 KB
実行使用メモリ 75,784 KB
最終ジャッジ日時 2024-11-20 10:12:45
合計ジャッジ時間 3,033 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,976 KB
testcase_01 AC 39 ms
52,488 KB
testcase_02 AC 40 ms
52,284 KB
testcase_03 AC 40 ms
53,124 KB
testcase_04 AC 39 ms
52,272 KB
testcase_05 AC 40 ms
53,252 KB
testcase_06 AC 39 ms
53,032 KB
testcase_07 AC 40 ms
52,708 KB
testcase_08 AC 45 ms
51,692 KB
testcase_09 AC 40 ms
51,812 KB
testcase_10 AC 40 ms
51,876 KB
testcase_11 AC 62 ms
75,468 KB
testcase_12 AC 64 ms
75,784 KB
testcase_13 AC 64 ms
75,504 KB
testcase_14 AC 65 ms
75,676 KB
testcase_15 AC 64 ms
75,388 KB
testcase_16 AC 40 ms
52,264 KB
testcase_17 AC 41 ms
52,152 KB
testcase_18 AC 47 ms
60,876 KB
testcase_19 AC 39 ms
53,500 KB
testcase_20 AC 46 ms
60,516 KB
testcase_21 AC 46 ms
60,692 KB
testcase_22 AC 45 ms
59,496 KB
testcase_23 AC 52 ms
69,828 KB
testcase_24 AC 46 ms
62,156 KB
testcase_25 AC 45 ms
59,944 KB
testcase_26 AC 50 ms
68,328 KB
testcase_27 AC 46 ms
60,368 KB
testcase_28 AC 40 ms
53,008 KB
testcase_29 AC 40 ms
52,604 KB
testcase_30 AC 62 ms
75,520 KB
testcase_31 AC 47 ms
60,120 KB
testcase_32 AC 49 ms
61,996 KB
testcase_33 AC 47 ms
61,816 KB
testcase_34 AC 62 ms
75,380 KB
testcase_35 AC 51 ms
68,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

2進数表記に 1010を含む


"""

N = int(input())

mod = 10**9+7

dp = [1,0,0,0]

for i in range(N):

    ndp = [0,0,0,0]

    #ok
    ndp[1] += dp[0] #1を置く
    ndp[0] += dp[0] #0

    #1
    ndp[1] += dp[1] #1を置く
    ndp[2] += dp[1] #0

    #2 = 10
    ndp[3] += dp[2] #1
    ndp[0] += dp[2] #0

    #3 = 101
    ndp[1] += dp[3] #1
    #0は禁止

    for j in range(4):
        ndp[j] %= mod
    dp = ndp

ng = sum(dp) % mod

ans = pow(2,N,mod) - ng
print (ans % mod)
0