結果

問題 No.120 傾向と対策:門松列(その1)
ユーザー horiesinitihoriesiniti
提出日時 2018-03-16 16:49:23
言語 Ruby
(3.3.0)
結果
AC  
実行時間 314 ms / 5,000 ms
コード長 278 bytes
コンパイル時間 41 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-06-01 09:26:58
合計ジャッジ時間 1,792 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 241 ms
14,080 KB
testcase_01 AC 314 ms
15,104 KB
testcase_02 AC 185 ms
14,464 KB
testcase_03 AC 308 ms
15,232 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:2: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

gets.to_i.times{
	n=gets.to_i
	x=gets.split.map{|e| e.to_i}.sort
	hs=Hash.new(0)
	while x.size>0
		hs[x[0]]+=1
		x.shift
	end
	y=hs.values.sort
	ans=0
	while y.size>2
		y[y.size-1]-=1
		y[y.size-2]-=1
		y[y.size-3]-=1
		y=y.sort.select{|e4|
			e4>0
		}
		ans+=1
	end
	puts ans
}
0