結果

問題 No.989 N×Mマス計算(K以上)
ユーザー shi-moshi-mo
提出日時 2020-09-30 00:23:41
言語 Ruby
(3.3.0)
結果
AC  
実行時間 455 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 31 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 22,912 KB
最終ジャッジ日時 2024-07-04 19:30:46
合計ジャッジ時間 4,613 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,288 KB
testcase_01 AC 85 ms
12,032 KB
testcase_02 AC 77 ms
12,032 KB
testcase_03 AC 78 ms
12,288 KB
testcase_04 AC 76 ms
12,288 KB
testcase_05 AC 74 ms
12,160 KB
testcase_06 AC 76 ms
12,160 KB
testcase_07 AC 82 ms
12,288 KB
testcase_08 AC 75 ms
12,160 KB
testcase_09 AC 75 ms
12,160 KB
testcase_10 AC 330 ms
17,536 KB
testcase_11 AC 212 ms
19,072 KB
testcase_12 AC 339 ms
19,200 KB
testcase_13 AC 143 ms
18,560 KB
testcase_14 AC 455 ms
22,912 KB
testcase_15 AC 180 ms
14,080 KB
testcase_16 AC 294 ms
15,744 KB
testcase_17 AC 134 ms
18,432 KB
testcase_18 AC 285 ms
13,056 KB
testcase_19 AC 220 ms
20,736 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, m, k = gets.split.map(&:to_i)
op, *b = gets.chomp.split
b.map!(&:to_i)
a = []
n.times{ a << gets.to_i }

b.sort!
op = op.to_sym

c = 0
n.times do |i|
  x, y = 0, m
  while 0 < (y - x)
    p = (x+y) / 2
    if k <= [a[i], b[p]].inject(op)
      y = p
      next
    end
    x = p+1
  end
  c += m - x
end
puts c
0