結果

問題 No.989 N×Mマス計算(K以上)
ユーザー horiesinitihoriesiniti
提出日時 2023-02-09 03:35:00
言語 Ruby
(3.3.0)
結果
AC  
実行時間 327 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 27,008 KB
最終ジャッジ日時 2024-07-06 10:50:05
合計ジャッジ時間 4,368 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
12,032 KB
testcase_01 AC 74 ms
12,160 KB
testcase_02 AC 74 ms
12,160 KB
testcase_03 AC 74 ms
12,032 KB
testcase_04 AC 75 ms
12,160 KB
testcase_05 AC 82 ms
12,032 KB
testcase_06 AC 77 ms
12,160 KB
testcase_07 AC 77 ms
12,032 KB
testcase_08 AC 75 ms
12,160 KB
testcase_09 AC 76 ms
12,160 KB
testcase_10 AC 225 ms
19,712 KB
testcase_11 AC 261 ms
23,936 KB
testcase_12 AC 271 ms
23,552 KB
testcase_13 AC 205 ms
22,016 KB
testcase_14 AC 327 ms
27,008 KB
testcase_15 AC 139 ms
15,104 KB
testcase_16 AC 194 ms
18,176 KB
testcase_17 AC 205 ms
21,888 KB
testcase_18 AC 126 ms
13,824 KB
testcase_19 AC 260 ms
24,832 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:3: warning: assigned but unused variable - m
Main.rb:6: warning: assigned but unused variable - c1
Syntax OK

ソースコード

diff #

bhs={}
as=[]
n,m,k=gets.split(" ").map{|e| e.to_i}
bs=gets.chomp.split(" ")
op=bs.shift
c1=1
bs.map{|e| e.to_i}.sort.reverse.each{|b|
	bhs[b]=0 if bhs.member?(b)==false
	bhs[b]+=1
}
n.times{
	as<<gets.to_i
}
as.sort!
p2=0
ans=0
bhs.sort.reverse.each{|k1,v1|
	k2=0
	if op=="+" then
		k2=k-k1
	else
		k2=k/k1+((k%k1==0)?(0):(1))
	end
	while p2<n && as[p2]<k2 do
		p2+=1
	end
	v2=n-p2
	ans=ans+(v1*v2)
}
puts ans
0