結果

問題 No.1909 Detect from Substrings
ユーザー siganaisiganai
提出日時 2022-04-22 23:05:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 308 ms / 2,000 ms
コード長 2,206 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,616 KB
実行使用メモリ 170,156 KB
最終ジャッジ日時 2024-06-24 04:28:40
合計ジャッジ時間 8,621 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
64,828 KB
testcase_01 AC 57 ms
65,504 KB
testcase_02 AC 56 ms
64,968 KB
testcase_03 AC 63 ms
68,040 KB
testcase_04 AC 62 ms
68,844 KB
testcase_05 AC 73 ms
77,472 KB
testcase_06 AC 80 ms
77,984 KB
testcase_07 AC 77 ms
77,972 KB
testcase_08 AC 301 ms
170,116 KB
testcase_09 AC 208 ms
152,876 KB
testcase_10 AC 106 ms
93,112 KB
testcase_11 AC 127 ms
98,000 KB
testcase_12 AC 101 ms
88,228 KB
testcase_13 AC 207 ms
162,616 KB
testcase_14 AC 242 ms
149,672 KB
testcase_15 AC 272 ms
169,756 KB
testcase_16 AC 100 ms
88,068 KB
testcase_17 AC 86 ms
78,592 KB
testcase_18 AC 86 ms
78,588 KB
testcase_19 AC 85 ms
78,056 KB
testcase_20 AC 83 ms
78,020 KB
testcase_21 AC 264 ms
148,748 KB
testcase_22 AC 308 ms
169,940 KB
testcase_23 AC 115 ms
99,140 KB
testcase_24 AC 110 ms
99,144 KB
testcase_25 AC 108 ms
86,788 KB
testcase_26 AC 272 ms
170,156 KB
testcase_27 AC 298 ms
159,804 KB
testcase_28 AC 252 ms
154,116 KB
testcase_29 AC 275 ms
151,968 KB
testcase_30 AC 294 ms
159,912 KB
testcase_31 AC 242 ms
144,304 KB
testcase_32 AC 290 ms
159,808 KB
testcase_33 AC 226 ms
164,968 KB
testcase_34 AC 290 ms
159,628 KB
testcase_35 AC 256 ms
161,064 KB
testcase_36 AC 293 ms
159,476 KB
testcase_37 AC 246 ms
162,044 KB
testcase_38 AC 297 ms
159,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env PyPy3

from collections import Counter, defaultdict, deque
import itertools
import re
import math
from functools import reduce
import operator
import bisect
import heapq
import functools
mod=10**9+7

import sys
input=sys.stdin.readline

n,m=map(int,input().split())
s=[input().rstrip() for _ in range(n)]
ansl = []
ansl2 = []
if n > 2:
    for j in range(m):
        l = [0] * 26
        for i in range(n):
            l[ord(s[i][j])-ord('a')] += 1
        if max(l) == n:
            for k in range(26):
                if l[k] == n:
                    ansl.append(chr(k+ord('a')))
        elif max(l) == n - 1:
            for k in range(26):
                if l[k] == n - 1:
                    ansl.append(chr(k+ord('a')))
                if l[k] == 1:
                    pos = k
            for ii in range(n):
                if ord(s[ii][j])-ord('a') == pos:
                    for jj in range(j,m):
                        ansl.append(s[ii][jj])
                    break
            break
        else:
            print(0)
            exit()
    for i in range(n):
        now = 0
        for aa in ansl:
            if now < m and aa == s[i][now]:
                now += 1
        if now < m:
            print(0)
            exit()
    print(1)
else:
    for j in range(m):
        l = [0] * 26
        for i in range(n):
            l[ord(s[i][j])-ord('a')] += 1
        if max(l) == n:
            for k in range(26):
                if l[k] == n:
                    ansl.append(chr(k+ord('a')))
                    ansl2.append(chr(k+ord('a')))
        else:
            ansl.append(s[1][j])
            ansl2.append(s[0][j])
            for jj in range(j,m):
                ansl.append(s[0][jj])
                ansl2.append(s[1][jj])
            break
    c = 0
    for i in range(n):
        now = 0
        for aa in ansl:
            if now < m and aa == s[i][now]:
                now += 1
        if now != m:
            break
    else:
        c += 1
    for i in range(n):
        now = 0
        for aa in ansl2:
            if now < m and aa == s[i][now]:
                now += 1
        if now != m:
            break
    else:
        c += 1
    print(c)
0