結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー horiesinitihoriesiniti
提出日時 2018-03-13 20:19:17
言語 Ruby
(3.3.0)
結果
AC  
実行時間 94 ms / 5,000 ms
コード長 304 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-06-30 04:49:10
合計ジャッジ時間 2,742 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,032 KB
testcase_01 AC 77 ms
12,032 KB
testcase_02 AC 79 ms
12,288 KB
testcase_03 AC 76 ms
12,160 KB
testcase_04 AC 83 ms
12,032 KB
testcase_05 AC 80 ms
13,056 KB
testcase_06 AC 73 ms
12,032 KB
testcase_07 AC 87 ms
14,976 KB
testcase_08 AC 84 ms
13,696 KB
testcase_09 AC 86 ms
13,568 KB
testcase_10 AC 84 ms
13,568 KB
testcase_11 AC 84 ms
13,824 KB
testcase_12 AC 86 ms
14,336 KB
testcase_13 AC 78 ms
12,288 KB
testcase_14 AC 79 ms
12,160 KB
testcase_15 AC 89 ms
13,824 KB
testcase_16 AC 74 ms
12,032 KB
testcase_17 AC 83 ms
12,928 KB
testcase_18 AC 94 ms
14,976 KB
testcase_19 AC 78 ms
13,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:18: warning: assigned but unused variable - e2
Syntax OK

ソースコード

diff #

hs={}
gets
x=gets.split.map{|e| e.to_i}
x.each{|e|
	hs[e]=1
}
hs2={}
hs2[0]=0
cs=16.times.map{0}
hs.keys.sort.each{|e|
	p1=32768
	p2=15
	while (p1&e)==0
		p1/=2
		p2-=1
	end
	
	e2=(p1-1)&e
	hs3={}
	if hs2.key?(e)==false
		hs2.each{|k,v|
			hs3[k^e]=0
		}
		cs[p2]+=1
	end
	hs2.update(hs3)
}
puts hs2.size
0