結果
問題 | No.1909 Detect from Substrings |
ユーザー | tassei903 |
提出日時 | 2022-04-22 21:55:16 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,086 bytes |
コンパイル時間 | 191 ms |
コンパイル使用メモリ | 82,316 KB |
実行使用メモリ | 124,980 KB |
最終ジャッジ日時 | 2024-06-24 03:03:29 |
合計ジャッジ時間 | 6,629 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
53,148 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | AC | 129 ms
105,568 KB |
testcase_19 | WA | - |
testcase_20 | AC | 127 ms
105,280 KB |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
ソースコード
import sys input = lambda :sys.stdin.readline()[:-1] ni = lambda :int(input()) na = lambda :list(map(int,input().split())) yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES") no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO") ####################################################################### c = 0 n,m = na() s = [list(input()) for i in range(n)] a = s[0] b = s[1] for i in range(n): if a[i]!=b[i]: l = i for i in range(n-1,-1,-1): if a[i]!=b[i]: r = i x = a[:l]+[b[l]]+a[l:] y = a[:r+1]+[b[r]]+b[r+1:] ans = 1 for i in range(n): t = m+1 for j in range(m): if s[i][j]!=x[j]: t = j break for j in range(t+1,m+1): if s[i][j-1]!=x[j]: ans = 0 if ans: c += 1 ans = 1 for i in range(n): t = m+1 for j in range(m): if s[i][j]!=y[j]: t = j #print(i, j) break for j in range(t+1,m+1): if s[i][j-1]!=y[j]: ans = 0 print(i,t) if ans: c += 1 print(c)