結果

問題 No.1811 EQUIV Ten
ユーザー ああいいああいい
提出日時 2022-01-14 22:25:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 439 ms / 2,000 ms
コード長 637 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 170,500 KB
最終ジャッジ日時 2024-11-20 11:54:42
合計ジャッジ時間 6,145 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,280 KB
testcase_01 AC 39 ms
52,428 KB
testcase_02 AC 48 ms
62,068 KB
testcase_03 AC 39 ms
53,520 KB
testcase_04 AC 39 ms
52,084 KB
testcase_05 AC 38 ms
52,240 KB
testcase_06 AC 39 ms
53,068 KB
testcase_07 AC 39 ms
52,920 KB
testcase_08 AC 40 ms
52,556 KB
testcase_09 AC 41 ms
53,876 KB
testcase_10 AC 40 ms
52,684 KB
testcase_11 AC 372 ms
154,800 KB
testcase_12 AC 392 ms
160,532 KB
testcase_13 AC 432 ms
167,632 KB
testcase_14 AC 439 ms
170,196 KB
testcase_15 AC 437 ms
170,500 KB
testcase_16 AC 39 ms
52,736 KB
testcase_17 AC 54 ms
64,280 KB
testcase_18 AC 58 ms
67,680 KB
testcase_19 AC 49 ms
61,440 KB
testcase_20 AC 82 ms
80,272 KB
testcase_21 AC 83 ms
79,512 KB
testcase_22 AC 60 ms
67,440 KB
testcase_23 AC 192 ms
108,044 KB
testcase_24 AC 91 ms
82,360 KB
testcase_25 AC 58 ms
67,428 KB
testcase_26 AC 170 ms
101,952 KB
testcase_27 AC 65 ms
71,296 KB
testcase_28 AC 40 ms
53,996 KB
testcase_29 AC 49 ms
61,324 KB
testcase_30 AC 369 ms
152,328 KB
testcase_31 AC 68 ms
73,752 KB
testcase_32 AC 94 ms
81,848 KB
testcase_33 AC 95 ms
81,880 KB
testcase_34 AC 357 ms
147,940 KB
testcase_35 AC 167 ms
101,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
dp = [[[0] * 16 for _ in range(2)] for _ in range(N+1)]
dp[0][0][0] = 1
P = 10 ** 9 + 7
for i in range(N):
    for bit in range(16):
        b = (bit << 1) % 16
        c = (bit << 1) % 16 + 1
        dp[i+1][1][b] += dp[i][1][bit]
        dp[i+1][1][c] += dp[i][1][bit]
        if b == 10:
            dp[i+1][1][b] += dp[i][0][bit]
        else:
            dp[i+1][0][b] += dp[i][0][bit]
        if c == 10:
            dp[i+1][1][c] += dp[i][0][bit]
        else:
            dp[i+1][0][c] += dp[i][0][bit]
    for bit in range(8):
        for f in range(2):
            dp[i+1][f][bit] %= P
print(sum(dp[-1][1])%P)
0