結果

問題 No.1811 EQUIV Ten
ユーザー 👑 KazunKazun
提出日時 2022-01-14 21:44:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 287 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 76,184 KB
最終ジャッジ日時 2024-11-20 09:06:47
合計ジャッジ時間 3,274 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,752 KB
testcase_01 AC 38 ms
52,864 KB
testcase_02 AC 42 ms
59,744 KB
testcase_03 AC 36 ms
52,244 KB
testcase_04 AC 35 ms
53,028 KB
testcase_05 AC 39 ms
52,396 KB
testcase_06 AC 35 ms
52,760 KB
testcase_07 AC 35 ms
52,368 KB
testcase_08 AC 36 ms
52,744 KB
testcase_09 AC 36 ms
52,336 KB
testcase_10 AC 37 ms
52,876 KB
testcase_11 AC 77 ms
75,820 KB
testcase_12 AC 81 ms
76,052 KB
testcase_13 AC 82 ms
75,780 KB
testcase_14 AC 81 ms
75,820 KB
testcase_15 AC 83 ms
76,100 KB
testcase_16 AC 37 ms
52,692 KB
testcase_17 AC 43 ms
61,404 KB
testcase_18 AC 45 ms
63,192 KB
testcase_19 AC 39 ms
59,632 KB
testcase_20 AC 46 ms
66,452 KB
testcase_21 AC 46 ms
67,364 KB
testcase_22 AC 44 ms
63,192 KB
testcase_23 AC 62 ms
75,780 KB
testcase_24 AC 48 ms
69,668 KB
testcase_25 AC 42 ms
62,804 KB
testcase_26 AC 62 ms
76,152 KB
testcase_27 AC 46 ms
63,768 KB
testcase_28 AC 37 ms
52,728 KB
testcase_29 AC 41 ms
59,404 KB
testcase_30 AC 76 ms
76,184 KB
testcase_31 AC 46 ms
63,244 KB
testcase_32 AC 47 ms
69,480 KB
testcase_33 AC 49 ms
69,624 KB
testcase_34 AC 74 ms
76,052 KB
testcase_35 AC 60 ms
76,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
Mod=10**9+7

DP=[0]*16; DP[0]=1
Ans=0

for _ in range(N):
    E=DP.copy()
    DP=[0]*16

    for i in range(16):
        p=(i<<1)&15
        DP[p]+=E[i]
        DP[p+1]+=E[i]

    for i in range(16):
        DP[i]%=Mod

    Ans=(2*Ans+DP[10])%Mod
    DP[10]=0

print(Ans)
0