結果

問題 No.685 Logical Operations
ユーザー shotoyooshotoyoo
提出日時 2021-09-01 21:33:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 860 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 73,600 KB
最終ジャッジ日時 2024-05-06 08:29:11
合計ジャッジ時間 2,537 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,736 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 42 ms
58,112 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 36 ms
52,124 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 43 ms
58,496 KB
testcase_08 AC 44 ms
58,496 KB
testcase_09 AC 46 ms
61,312 KB
testcase_10 AC 52 ms
64,640 KB
testcase_11 AC 58 ms
67,968 KB
testcase_12 AC 58 ms
68,224 KB
testcase_13 AC 61 ms
69,376 KB
testcase_14 AC 68 ms
72,960 KB
testcase_15 AC 67 ms
71,808 KB
testcase_16 AC 68 ms
73,600 KB
testcase_17 AC 65 ms
71,680 KB
testcase_18 AC 58 ms
68,480 KB
testcase_19 AC 57 ms
67,328 KB
testcase_20 AC 57 ms
67,712 KB
testcase_21 AC 42 ms
58,240 KB
testcase_22 AC 42 ms
58,752 KB
testcase_23 AC 51 ms
65,408 KB
testcase_24 AC 50 ms
63,488 KB
testcase_25 AC 56 ms
66,432 KB
testcase_26 AC 56 ms
66,432 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