結果

問題 No.663 セルオートマトンの逆操作
ユーザー fumofumofunifumofumofuni
提出日時 2023-06-21 01:40:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 975 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-06-28 12:22:52
合計ジャッジ時間 2,591 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 38 ms
52,736 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 38 ms
51,944 KB
testcase_07 AC 38 ms
51,812 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 39 ms
52,608 KB
testcase_11 AC 38 ms
52,096 KB
testcase_12 AC 39 ms
52,096 KB
testcase_13 AC 38 ms
52,096 KB
testcase_14 AC 37 ms
52,352 KB
testcase_15 AC 38 ms
51,956 KB
testcase_16 AC 39 ms
52,224 KB
testcase_17 AC 38 ms
51,840 KB
testcase_18 AC 39 ms
52,224 KB
testcase_19 AC 39 ms
52,096 KB
testcase_20 AC 46 ms
60,288 KB
testcase_21 AC 51 ms
61,952 KB
testcase_22 AC 62 ms
66,816 KB
testcase_23 AC 72 ms
71,040 KB
testcase_24 AC 80 ms
75,136 KB
testcase_25 AC 82 ms
75,520 KB
testcase_26 AC 83 ms
76,928 KB
testcase_27 AC 40 ms
52,352 KB
testcase_28 AC 40 ms
52,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=[0]*N
for i in range(N):
    A[i]=int(input())
ans = 0
mod =1000000007
for i in range(2):
    for j in range(2):
        dp=[0]*4
        dp[i*2+j]=1
        for k in range(1,N-1):
            ndp=[0]*4
            if A[k]==0:
                ndp[3]+=dp[3]
                ndp[0]+=dp[0]
                ndp[0]+=dp[2]
            else :
                ndp[1]+=dp[0]
                ndp[2]+=dp[1]
                ndp[3]+=dp[1]
                ndp[1]+=dp[2]
                ndp[2]+=dp[3]
            for l in range(4):
                ndp[l]%=mod
                dp[l]=ndp[l]
        for k in range(4):
            p=1
            if i==0 and j==0:
                p=0
            if k%2==1 and i==1 and j==1:
                p=0
            q=1
            if k%2==0 and i==0:
                q=0
            if k//2==1 and k%2==1 and i==1:
                q=0
            if A[0]==p and A[N-1]==q:
                ans += dp[k]
             


print(ans%mod)
0