結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー suppy193suppy193
提出日時 2017-02-08 10:13:38
言語 Ruby
(3.4.1)
結果
WA  
実行時間 -
コード長 118 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-12-25 16:27:30
合計ジャッジ時間 3,554 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
11,904 KB
testcase_01 AC 113 ms
12,032 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 103 ms
12,160 KB
testcase_06 WA -
testcase_07 AC 112 ms
12,032 KB
testcase_08 AC 115 ms
12,160 KB
testcase_09 AC 109 ms
12,160 KB
testcase_10 AC 110 ms
12,160 KB
testcase_11 AC 108 ms
12,160 KB
testcase_12 AC 107 ms
12,032 KB
testcase_13 AC 106 ms
12,032 KB
testcase_14 AC 109 ms
12,288 KB
testcase_15 AC 113 ms
12,160 KB
testcase_16 WA -
testcase_17 AC 106 ms
12,032 KB
testcase_18 AC 110 ms
12,288 KB
testcase_19 AC 109 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n = gets.strip.to_i
a = gets.strip.split(' ').map(&:to_i)

x = 0
a.each do |ai|
	x |= ai
end
p 2**x.to_s(2).count('1')
0