結果
問題 | No.150 "良問"(良問とは言っていない |
ユーザー | tookunn_1213 |
提出日時 | 2017-06-17 11:24:37 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 71 ms / 5,000 ms |
コード長 | 635 bytes |
コンパイル時間 | 183 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-10-11 02:11:26 |
合計ジャッジ時間 | 1,647 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
10,624 KB |
testcase_01 | AC | 32 ms
10,496 KB |
testcase_02 | AC | 31 ms
10,496 KB |
testcase_03 | AC | 30 ms
10,752 KB |
testcase_04 | AC | 30 ms
10,496 KB |
testcase_05 | AC | 30 ms
10,624 KB |
testcase_06 | AC | 71 ms
10,496 KB |
testcase_07 | AC | 29 ms
10,496 KB |
testcase_08 | AC | 29 ms
10,752 KB |
testcase_09 | AC | 30 ms
10,752 KB |
testcase_10 | AC | 42 ms
10,752 KB |
testcase_11 | AC | 44 ms
10,752 KB |
testcase_12 | AC | 38 ms
10,752 KB |
testcase_13 | AC | 45 ms
10,752 KB |
testcase_14 | AC | 48 ms
10,624 KB |
testcase_15 | AC | 47 ms
10,496 KB |
testcase_16 | AC | 32 ms
10,624 KB |
testcase_17 | AC | 35 ms
10,496 KB |
testcase_18 | AC | 48 ms
10,624 KB |
testcase_19 | AC | 50 ms
10,496 KB |
testcase_20 | AC | 51 ms
10,752 KB |
ソースコード
T = int(input()) S = [input() for i in range(T)] INF = 10**9+7 good = 'good' good_len = len(good) problem = 'problem' problem_len = len(problem) for t in range(T): N = len(S[t]) ans = INF imos = [INF for i in range(N+1)] for i in range(good_len,N-problem_len+1): cnt = 0 for k in range(problem_len): if S[t][i+k] != problem[k]: cnt+=1 imos[i] = cnt for i in range(N,0,-1): imos[i-1] = min(imos[i-1],imos[i]) #print(imos) for i in range(0,N-good_len-problem_len+1): good_cnt = 0 for j in range(good_len): if S[t][i+j] != good[j]: good_cnt+=1 ans = min(ans,good_cnt + imos[i+good_len]) print(ans)