結果

問題 No.1909 Detect from Substrings
ユーザー shotoyooshotoyoo
提出日時 2022-04-22 21:25:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 1,935 bytes
コンパイル時間 631 ms
コンパイル使用メモリ 82,908 KB
実行使用メモリ 116,160 KB
最終ジャッジ日時 2024-06-24 02:27:19
合計ジャッジ時間 7,149 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,148 KB
testcase_01 AC 42 ms
55,332 KB
testcase_02 AC 42 ms
56,332 KB
testcase_03 AC 50 ms
63,228 KB
testcase_04 AC 52 ms
66,636 KB
testcase_05 AC 69 ms
78,504 KB
testcase_06 AC 77 ms
82,092 KB
testcase_07 AC 77 ms
82,152 KB
testcase_08 AC 114 ms
116,160 KB
testcase_09 AC 89 ms
101,644 KB
testcase_10 AC 97 ms
96,920 KB
testcase_11 AC 90 ms
94,376 KB
testcase_12 AC 81 ms
88,096 KB
testcase_13 AC 92 ms
101,408 KB
testcase_14 AC 101 ms
106,324 KB
testcase_15 AC 109 ms
110,492 KB
testcase_16 AC 85 ms
89,828 KB
testcase_17 AC 77 ms
82,380 KB
testcase_18 AC 78 ms
82,172 KB
testcase_19 AC 78 ms
82,312 KB
testcase_20 AC 78 ms
82,112 KB
testcase_21 AC 108 ms
109,708 KB
testcase_22 AC 118 ms
115,976 KB
testcase_23 AC 87 ms
91,516 KB
testcase_24 AC 86 ms
91,704 KB
testcase_25 AC 84 ms
88,624 KB
testcase_26 AC 110 ms
112,844 KB
testcase_27 AC 115 ms
113,468 KB
testcase_28 AC 105 ms
106,332 KB
testcase_29 AC 107 ms
107,532 KB
testcase_30 AC 116 ms
113,444 KB
testcase_31 AC 106 ms
106,064 KB
testcase_32 AC 118 ms
113,436 KB
testcase_33 AC 101 ms
103,740 KB
testcase_34 AC 125 ms
114,272 KB
testcase_35 AC 117 ms
107,468 KB
testcase_36 AC 144 ms
113,364 KB
testcase_37 AC 107 ms
107,368 KB
testcase_38 AC 120 ms
113,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x))
debug = lambda x: sys.stderr.write(x+"\n")
YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO); inf=10**18
LI = lambda : list(map(int, input().split()))
def dlist(*l, fill=0):
    if len(l)==1:
        return [fill]*l[0]
    ll = l[1:]
    return [dlist(*ll, fill=fill) for _ in range(l[0])]
sys.setrecursionlimit(3*10**5+10)

n,m = list(map(int, input().split()))
ss = [[ord(c)-ord("a") for c in input()] for _ in range(n)]
se = set()
p = None
def ok(val, s0):
    j = 0
    for i in range(m+1):
        if j<m and val[i]==s0[j]:
            j += 1
    return j==m
def sub(s0,s1):
    if s0==s1:
        return 1, None
    for i in range(m):
        if s0[i]!=s1[i]:
            v0 = s0[:i] + [s0[i]] + s1[i:]
            v1 = s0[:i] + [s1[i]] + s0[i:]
            val = 0
            res0 = (ok(v0, s0) and ok(v0, s1))
            res1 = (ok(v1, s0) and ok(v1, s1))
            if res0 and res1:
                return 1, (v0, v1)
            elif res0:
                return 1, v0
            elif res1:
                return 1, v1
            else:
                return 0, None
for s in ss:
    if p is not None:
        if p==s:
            continue
        else:
            v, res = sub(p,s)
            if v==0:
                ans = 0
                break
            elif res is None:
                continue
            else:
                if type(res)==tuple:
                    ans = 0
                    ans += all(ok(res[0], s) for s in ss)
                    ans += all(ok(res[1], s) for s in ss)
                else:
                    if all(ok(res, s) for s in ss):
                        ans = 1
                    else:
                        ans = 0
                break
    else:
        p = s
else:
    ans = 26*(m+1)
print(ans)
0