結果
問題 | No.252 "良問"(良問とは言っていない (2) |
ユーザー | maspy |
提出日時 | 2020-03-07 00:42:22 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 720 bytes |
コンパイル時間 | 130 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 68,084 KB |
最終ジャッジ日時 | 2024-10-14 10:55:17 |
合計ジャッジ時間 | 7,408 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 645 ms
44,556 KB |
testcase_01 | TLE | - |
testcase_02 | AC | 659 ms
47,416 KB |
testcase_03 | AC | 610 ms
68,084 KB |
testcase_04 | AC | 616 ms
67,692 KB |
testcase_05 | AC | 620 ms
67,836 KB |
testcase_06 | AC | 488 ms
44,484 KB |
ソースコード
#!/usr/bin/env python3 # %% import sys read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines import numpy as np # %% T = int(readline()) words = read().split() # %% def solve(S): S = np.array(list(S)) L = len(S) P = np.zeros(L - 6, np.int32) for i, ch in enumerate(b'problem'): P += (S[i: L - 6 + i] != ch) G = np.zeros(L - 4, np.int32) for i, ch in enumerate(b'good'): G += (S[i: L - 4 + i] != ch) add = np.zeros_like(G) add[7:] += (P == 0)[:-5] np.cumsum(add, out=add) G += add INF = 10 ** 7 return (np.minimum.accumulate(G[:L - 10]) + P[4:]).min() print('\n'.join(map(str, map(solve, words))))