結果

問題 No.1996 <><
ユーザー lloyzlloyz
提出日時 2022-07-01 23:02:09
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 630 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 152,460 KB
最終ジャッジ日時 2024-11-26 06:45:01
合計ジャッジ時間 51,684 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,588 KB
testcase_01 AC 41 ms
137,184 KB
testcase_02 AC 41 ms
59,380 KB
testcase_03 AC 48 ms
149,476 KB
testcase_04 AC 44 ms
59,676 KB
testcase_05 AC 40 ms
141,868 KB
testcase_06 AC 42 ms
59,612 KB
testcase_07 AC 42 ms
142,180 KB
testcase_08 AC 60 ms
71,448 KB
testcase_09 AC 55 ms
152,460 KB
testcase_10 AC 57 ms
70,792 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 164 ms
75,420 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 1,056 ms
84,600 KB
testcase_28 AC 62 ms
64,776 KB
testcase_29 TLE -
testcase_30 AC 108 ms
67,200 KB
testcase_31 AC 596 ms
77,440 KB
testcase_32 AC 68 ms
71,336 KB
権限があれば一括ダウンロードができます

ソースコード

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