題目連結

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

https://onlinejudge.org/index.php?option=onlinejudge&Itemid=8&page=show_problem&problem=2834

參考文章

X

本題要點

很直白的用判斷式照著寫就可以了,特別注意空格我用 replace 去轉換,將字組合在一起

參考解答

解一:

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

n = int(input())
for i in range(n):
	teamans = input()
	judgesans = input()
	
	if teamans == judgesans:
		result = "Yes"
	elif teamans.replace(" ","") == judgesans or judgesans.replace(" ","") == teamans:
		result = "Output Format Error"
	else:
		result = "Wrong Answer"
	print("Case ", i+1, ": ", result, sep = '')

回CPE頁面

CPE