題目連結

https://zerojudge.tw/ShowProblem?problemid=a466

https://onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=3710#google_vignette

參考文章

本題要點

直接暴力吧 :)

先用長度判斷,題目說長度固定,只會有寫錯字的可能

長度只要等於五就輸出 3

我原本寫 if len(s) == 5: 因為範例測資出錯,我猜是 theee 後面還有一格空格

所以我改成 if len(s) >= 5: 就過了

再來一跟二的判斷,至多錯一個字,那就把三個字倆倆排列組合出所有可能~

參考解答

解一:

截圖 2024-06-20 下午5.45.53.png

n = int(input())
for _ in range(n):
	s = input()
	if len(s) >= 5:
		print(3)
	else:
		if (s[0] == "o" and s[1] == "n") or (s[0] == "o" and s[2] == "e") or (s[1] == "n" and s[2] == "e"):
			print(1)
		else:
			print(2)

回CPE頁面