結果
問題 | No.1909 Detect from Substrings |
ユーザー | titia |
提出日時 | 2022-04-23 01:14:42 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 585 bytes |
コンパイル時間 | 185 ms |
コンパイル使用メモリ | 82,444 KB |
実行使用メモリ | 848,612 KB |
最終ジャッジ日時 | 2024-06-24 06:46:29 |
合計ジャッジ時間 | 4,936 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,828 KB |
testcase_01 | AC | 39 ms
53,664 KB |
testcase_02 | AC | 37 ms
52,064 KB |
testcase_03 | AC | 42 ms
57,664 KB |
testcase_04 | AC | 46 ms
59,412 KB |
testcase_05 | AC | 46 ms
60,948 KB |
testcase_06 | AC | 48 ms
64,308 KB |
testcase_07 | AC | 49 ms
64,896 KB |
testcase_08 | MLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
import sys input = sys.stdin.readline N,M=map(int,input().split()) S=[input().strip() for i in range(N)] for i in range(M): if S[0][i]!=S[1][i]: T1=S[0][:i]+S[1][i]+S[0][i:] T2=S[1][:i]+S[0][i]+S[1][i:] break ANS=0 SET=set() for i in range(M+1): SET.add(T1[:i]+T1[i+1:]) for i in range(N): if S[i] in SET: True else: break else: ANS+=1 SET=set() for i in range(M+1): SET.add(T2[:i]+T2[i+1:]) for i in range(N): if S[i] in SET: True else: break else: ANS+=1 print(ANS)