結果
問題 | No.1909 Detect from Substrings |
ユーザー | 👑 rin204 |
提出日時 | 2022-04-22 21:34:04 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 896 bytes |
コンパイル時間 | 285 ms |
コンパイル使用メモリ | 82,492 KB |
実行使用メモリ | 702,376 KB |
最終ジャッジ日時 | 2024-06-24 02:39:03 |
合計ジャッジ時間 | 34,185 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
52,600 KB |
testcase_01 | AC | 38 ms
53,504 KB |
testcase_02 | AC | 38 ms
53,152 KB |
testcase_03 | AC | 43 ms
60,540 KB |
testcase_04 | AC | 44 ms
61,128 KB |
testcase_05 | AC | 53 ms
64,616 KB |
testcase_06 | AC | 61 ms
70,772 KB |
testcase_07 | AC | 60 ms
70,220 KB |
testcase_08 | AC | 773 ms
378,784 KB |
testcase_09 | AC | 125 ms
108,128 KB |
testcase_10 | AC | 492 ms
266,644 KB |
testcase_11 | AC | 292 ms
182,752 KB |
testcase_12 | AC | 269 ms
169,712 KB |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | AC | 266 ms
169,920 KB |
testcase_17 | AC | 77 ms
81,596 KB |
testcase_18 | AC | 65 ms
71,736 KB |
testcase_19 | AC | 67 ms
70,140 KB |
testcase_20 | AC | 68 ms
71,648 KB |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | AC | 496 ms
266,572 KB |
testcase_24 | AC | 498 ms
267,488 KB |
testcase_25 | AC | 267 ms
169,432 KB |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
testcase_30 | MLE | - |
testcase_31 | MLE | - |
testcase_32 | MLE | - |
testcase_33 | TLE | - |
testcase_34 | MLE | - |
testcase_35 | MLE | - |
testcase_36 | MLE | - |
testcase_37 | MLE | - |
testcase_38 | MLE | - |
ソースコード
import sys sys.setrecursionlimit(10 ** 9) n, m = map(int, input().split()) lst = [input() for _ in range(n)] S = lst[0] T = lst[1] tmp = [] ans = 0 def ok(): for S in lst: p = 0 for t in tmp: if S[p] == t: p += 1 if p == m: break if p != m: return False return True def dfs(sp, tp, x): if sp == m and tp == m: global ans if ok(): ans += 1 return if sp < m and tp < m and S[sp] == T[tp]: tmp.append(S[sp]) dfs(sp + 1, tp + 1, x) tmp.pop() else: if sp < m and not x & 1: tmp.append(S[sp]) dfs(sp + 1, tp, x ^ 1) tmp.pop() if tp < m and not x & 2: tmp.append(T[tp]) dfs(sp, tp + 1, x ^ 2) tmp.pop() dfs(0, 0, 0) print(ans)