結果

問題 No.1909 Detect from Substrings
ユーザー vwxyzvwxyz
提出日時 2022-05-29 19:13:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 376 ms / 2,000 ms
コード長 527 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,120 KB
最終ジャッジ日時 2024-09-21 00:35:53
合計ジャッジ時間 9,530 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 34 ms
10,624 KB
testcase_04 AC 37 ms
10,752 KB
testcase_05 AC 65 ms
11,008 KB
testcase_06 AC 74 ms
11,776 KB
testcase_07 AC 79 ms
11,648 KB
testcase_08 AC 328 ms
13,988 KB
testcase_09 AC 49 ms
13,864 KB
testcase_10 AC 208 ms
12,628 KB
testcase_11 AC 115 ms
12,500 KB
testcase_12 AC 134 ms
12,160 KB
testcase_13 AC 149 ms
14,116 KB
testcase_14 AC 216 ms
14,116 KB
testcase_15 AC 332 ms
13,988 KB
testcase_16 AC 188 ms
12,160 KB
testcase_17 AC 145 ms
11,520 KB
testcase_18 AC 149 ms
11,648 KB
testcase_19 AC 151 ms
11,648 KB
testcase_20 AC 142 ms
11,648 KB
testcase_21 AC 289 ms
14,120 KB
testcase_22 AC 365 ms
14,092 KB
testcase_23 AC 124 ms
12,504 KB
testcase_24 AC 159 ms
12,508 KB
testcase_25 AC 182 ms
12,160 KB
testcase_26 AC 323 ms
14,120 KB
testcase_27 AC 376 ms
14,120 KB
testcase_28 AC 209 ms
13,992 KB
testcase_29 AC 280 ms
14,116 KB
testcase_30 AC 333 ms
14,116 KB
testcase_31 AC 246 ms
13,988 KB
testcase_32 AC 336 ms
13,996 KB
testcase_33 AC 266 ms
14,116 KB
testcase_34 AC 339 ms
13,988 KB
testcase_35 AC 302 ms
14,008 KB
testcase_36 AC 334 ms
13,992 KB
testcase_37 AC 276 ms
13,988 KB
testcase_38 AC 350 ms
14,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline
N,M=map(int,readline().split())
S=[readline().rstrip() for i in range(N)]
for j in range(M):
    if S[0][j]!=S[1][j]:
        break
se=set()
alp=[chr(i) for i in range(97,97+26)]
se.add(S[0][:j]+S[1][j]+S[0][j:])
se.add(S[1][:j]+S[0][j]+S[1][j:])
ans=0
for s in se:
    for i in range(N):
        for j in range(M):
            if S[i][j]!=s[j]:
                break
        else:
            continue
        if S[i]!=s[:j]+s[j+1:]:
            break
    else:
        ans+=1
print(ans)
0