====== PLU Count ====== ===== 풀이 ===== * 그냥 구현해도 어렵지 않지만, [[ps:정규표현식]]을 사용하면 더 간단하게 풀 수 있다. ===== 코드 ===== """Solution code for "BOJ 5345. PLU Count". - Problem link: https://www.acmicpc.net/problem/5345 - Solution link: http://www.teferi.net/ps/problems/boj/5345 Tags: [regex] """ import re import sys PATTERN = r'p.*?l.*?u' def main(): n = int(sys.stdin.readline()) for _ in range(n): string = sys.stdin.readline().rstrip() print(len(re.findall(PATTERN, string, re.IGNORECASE))) if __name__ == '__main__': main() {{tag>BOJ ps:problems:boj:실버_5}}