結果

問題 No.1909 Detect from Substrings
ユーザー Eki1009Eki1009
提出日時 2022-04-22 21:06:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 211 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 86,024 KB
最終ジャッジ日時 2024-06-24 02:02:20
合計ジャッジ時間 6,429 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,868 KB
testcase_01 AC 39 ms
52,964 KB
testcase_02 AC 38 ms
53,560 KB
testcase_03 AC 38 ms
53,380 KB
testcase_04 AC 39 ms
54,208 KB
testcase_05 AC 44 ms
57,348 KB
testcase_06 AC 54 ms
67,336 KB
testcase_07 AC 55 ms
67,700 KB
testcase_08 AC 185 ms
83,864 KB
testcase_09 AC 167 ms
85,232 KB
testcase_10 AC 100 ms
69,056 KB
testcase_11 AC 97 ms
68,816 KB
testcase_12 AC 65 ms
65,056 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
S = [input() for _ in range(n)]
T = set([chr(i+ord("a"))+S[0] for i in range(26)]+[S[0]+chr(i+ord("a")) for i in range(26)])
ans = sum(all(s in t for s in S) for t in T)
print(ans)
0