結果

問題 No.1811 EQUIV Ten
ユーザー tassei903tassei903
提出日時 2022-03-11 17:53:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 768 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 115,712 KB
最終ジャッジ日時 2024-09-15 21:00:12
合計ジャッジ時間 5,230 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 51 ms
60,928 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 40 ms
51,712 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 42 ms
52,480 KB
testcase_10 AC 42 ms
52,352 KB
testcase_11 AC 257 ms
108,928 KB
testcase_12 AC 268 ms
112,000 KB
testcase_13 AC 286 ms
115,328 KB
testcase_14 AC 294 ms
115,712 KB
testcase_15 AC 297 ms
115,584 KB
testcase_16 AC 41 ms
52,096 KB
testcase_17 AC 54 ms
61,824 KB
testcase_18 AC 57 ms
62,720 KB
testcase_19 AC 52 ms
61,312 KB
testcase_20 AC 78 ms
77,312 KB
testcase_21 AC 79 ms
77,184 KB
testcase_22 AC 55 ms
62,208 KB
testcase_23 AC 148 ms
89,344 KB
testcase_24 AC 86 ms
78,464 KB
testcase_25 AC 56 ms
62,592 KB
testcase_26 AC 132 ms
86,656 KB
testcase_27 AC 64 ms
67,456 KB
testcase_28 AC 41 ms
52,224 KB
testcase_29 AC 53 ms
60,800 KB
testcase_30 AC 250 ms
108,160 KB
testcase_31 AC 68 ms
69,888 KB
testcase_32 AC 86 ms
78,848 KB
testcase_33 AC 87 ms
79,104 KB
testcase_34 AC 243 ms
106,368 KB
testcase_35 AC 129 ms
86,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")

#######################################################################

ans = 0
n = ni()
mod = 10**9+7
if n <= 3:
    print(0)
    exit()

z = 15
dp = [[0 for j in range(16)]for i in range(n+1)]
dp[0][0] = 1
for i in range(n):
    for j in range(16):
        for k in range(2):
            ni = i + 1
            nj = z&((j<<1)|k)
            if nj == 10:
                continue
            dp[ni][nj] += dp[i][j]
            dp[ni][nj] %= mod

print((pow(2,n,mod)-sum(dp[-1]))%mod)
0