結果

問題 No.989 N×Mマス計算(K以上)
ユーザー 小野寺健小野寺健
提出日時 2021-11-07 21:22:13
言語 Ruby
(3.3.0)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 22,144 KB
最終ジャッジ日時 2024-04-26 23:02:14
合計ジャッジ時間 4,224 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 88 ms
12,032 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 87 ms
12,160 KB
testcase_04 AC 89 ms
12,288 KB
testcase_05 AC 88 ms
12,288 KB
testcase_06 AC 87 ms
12,032 KB
testcase_07 AC 88 ms
12,288 KB
testcase_08 AC 88 ms
12,160 KB
testcase_09 AC 88 ms
12,288 KB
testcase_10 AC 187 ms
18,560 KB
testcase_11 AC 171 ms
19,456 KB
testcase_12 AC 192 ms
19,328 KB
testcase_13 AC 139 ms
17,536 KB
testcase_14 AC 230 ms
22,144 KB
testcase_15 AC 131 ms
14,080 KB
testcase_16 AC 161 ms
16,128 KB
testcase_17 AC 138 ms
17,280 KB
testcase_18 AC 144 ms
13,312 KB
testcase_19 AC 170 ms
19,584 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def add(a, b)
	a + b
end

def mul(a, b)
	a * b
end

N, M, K = gets.split(" ").map{|s| s.to_i}
op, *b = gets.split(" ")
b = b.map{|s| s.to_i}.sort!
a = []
N.times {
	a << gets.to_i
}
a.sort!

op = (op == "+" ? method(:add) : method(:mul))

cnt = 0
j = M - 1
0.upto(N-1) {|i|
	while j >= 0 do 
		if op.call(a[i], b[j]) < K then
			break
		end
		j -= 1
	end
	cnt += M - 1 - j
}

puts cnt
0