結果

問題 No.685 Logical Operations
ユーザー shotoyooshotoyoo
提出日時 2021-09-01 21:33:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 860 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 75,040 KB
最終ジャッジ日時 2024-11-28 13:42:09
合計ジャッジ時間 2,269 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,820 KB
testcase_01 AC 35 ms
52,320 KB
testcase_02 AC 36 ms
58,860 KB
testcase_03 AC 33 ms
53,348 KB
testcase_04 AC 34 ms
53,376 KB
testcase_05 AC 32 ms
52,952 KB
testcase_06 AC 33 ms
52,804 KB
testcase_07 AC 39 ms
59,648 KB
testcase_08 AC 37 ms
59,716 KB
testcase_09 AC 42 ms
62,752 KB
testcase_10 AC 46 ms
64,968 KB
testcase_11 AC 51 ms
68,108 KB
testcase_12 AC 50 ms
68,704 KB
testcase_13 AC 54 ms
70,116 KB
testcase_14 AC 58 ms
74,020 KB
testcase_15 AC 59 ms
73,196 KB
testcase_16 AC 59 ms
75,040 KB
testcase_17 AC 58 ms
73,168 KB
testcase_18 AC 51 ms
70,340 KB
testcase_19 AC 50 ms
68,784 KB
testcase_20 AC 51 ms
68,120 KB
testcase_21 AC 36 ms
59,988 KB
testcase_22 AC 36 ms
59,576 KB
testcase_23 AC 45 ms
67,000 KB
testcase_24 AC 44 ms
65,164 KB
testcase_25 AC 50 ms
67,940 KB
testcase_26 AC 53 ms
68,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


n = int(input())
l = [
    [[0,0,0], [-1, 1, 0]],
    [[1,1,0], [0,-1,1]]
]
dp = {}
M = 10**9+7
def sub(y, v1, v3, v4):
    if y==0:
        return v1 and v3 and v4
    elif y<0:
        return 0
    if (y,v1,v3,v4) in dp:
        return dp[y,v1,v3,v4]
    res = 0
    for i in range(2):
        for j in range(2):
            ll = l[i][j]
            nv1 = v1 + ll[0]
            nv3 = v3 + ll[1]
            nv4 = v4 + ll[2]
            nv1 = max(0, min(1, nv1))
            nv3 = max(0, min(1, nv3))
            nv4 = max(0, min(1, nv4))
            res += sub((y-j)//2, nv1, nv3, nv4)
    dp[y,v1,v3,v4] = res%M
    return res%M
ans = sub(n, 1, 0, 0)
print(ans%M)
0