題目連結

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

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

參考文章

X

本題要點

換算成二進位制,問有幾個1。

簡單做XD。

參考解答

解一:

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

n = int(input())
while n != 0:
		num = format(n, "b") # num 為 n 的二進位制
		total = 0
		for cur in str(num):
				if cur == '1':
						total += 1
		print("The parity of",num,"is",total,"(mod 2).")
	
		n  = int(input())
	

回CPE頁面

CPE