1085 判斷奇偶性

2021-07-04 22:34:06 字數 829 閱讀 1027

判斷奇偶性

time limit:1000ms  memory limit:65536k

total submit:128 accepted:58

description

計算乙個無符號整數x的二進位制中1的個數是奇數還是偶數。

input

多組測試資料。每組測試資料報括乙個無符號整數n(0<n<2^32-1)

output

若包含偶數個1,則輸出even,否則輸出odd。

sample input

876

154294967294

4294967295

sample output

odd

oddeven

even

oddeven

source

using system;

using system.collections.generic;

using system.linq;

using system.text;

namespace ak1085

if (count % 2 == 0)

console.writeline("even");

else

console.writeline("odd");}}

}}

奇偶性剪枝

我們先來看一道題目 有乙個n x m大小的迷宮。其中字元 s 表示起點,字元 d 表示出口,字元 x 表示牆壁,字元,表示平地。你需要從 s 出發走到 d 每次只能向上下左右相鄰的位置移動,並且不能走出地圖,也不能走進牆壁。每次移動消耗1時間,走過路都會塌陷,因此不能走回頭路或者原地不動。現在已知出...

wikioi 2145 判斷奇偶性

題目描述 description 判斷函式y x n次方的奇偶性若是奇函式就輸出ji,偶函式輸出ou 輸入描述 input description 一行輸入n 輸出描述 output description 一行,輸出答案 樣例輸入 sample input 樣例輸出 sample output o...

Code vs 2145 判斷奇偶性

時間限制 1 s 空間限制 1000 kb 題目等級 青銅 bronze 題解 檢視執行結果 判斷函式y x n次方的奇偶性若是奇函式就輸出ji,偶函式輸出ou 輸入描述 input description 一行輸入n 輸出描述 output description 一行,輸出答案 樣例輸入 sam...