結果

問題 No.1996 <><
ユーザー lloyzlloyz
提出日時 2022-07-01 23:02:09
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 630 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 90,752 KB
最終ジャッジ日時 2024-05-04 17:27:06
合計ジャッジ時間 4,259 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
57,984 KB
testcase_01 AC 32 ms
52,224 KB
testcase_02 AC 32 ms
52,224 KB
testcase_03 AC 39 ms
60,160 KB
testcase_04 AC 32 ms
51,968 KB
testcase_05 AC 32 ms
52,072 KB
testcase_06 AC 34 ms
52,224 KB
testcase_07 AC 34 ms
52,096 KB
testcase_08 AC 48 ms
64,000 KB
testcase_09 AC 46 ms
63,424 KB
testcase_10 AC 46 ms
63,872 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = list(map(int, input().split()))
S = list(input())
mod = 10**9 + 7

DP = [[0 for _ in range(k + 1)] for _ in range(n)]
for i in range(n - 1):
    DP[i][0] += 1
    for j in range(min(k, i + 1)):
        for l in range(i + 1, n):
            if S[j] == '<':
                if A[i] < A[l]:
                    DP[l][j + 1] += DP[i][j]
                    DP[l][j + 1] %= mod
            elif S[j] == '>':
                if A[i] > A[l]:
                    DP[l][j + 1] += DP[i][j]
                    DP[l][j + 1] %= mod
ans = 0
for i in range(n):
    ans += DP[i][k]
    ans %= mod
print(ans)
0