結果

問題 No.1137 Circles
ユーザー simansiman
提出日時 2022-03-08 00:54:48
言語 Ruby
(3.3.0)
結果
AC  
実行時間 304 ms / 2,000 ms
コード長 243 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2024-07-22 22:14:34
合計ジャッジ時間 6,292 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
16,256 KB
testcase_01 AC 288 ms
16,512 KB
testcase_02 AC 161 ms
16,256 KB
testcase_03 AC 220 ms
16,256 KB
testcase_04 AC 253 ms
16,384 KB
testcase_05 AC 175 ms
16,384 KB
testcase_06 AC 264 ms
16,256 KB
testcase_07 AC 204 ms
16,256 KB
testcase_08 AC 266 ms
16,512 KB
testcase_09 AC 187 ms
16,256 KB
testcase_10 AC 209 ms
16,256 KB
testcase_11 AC 223 ms
16,256 KB
testcase_12 AC 304 ms
16,384 KB
testcase_13 AC 192 ms
16,256 KB
testcase_14 AC 293 ms
16,384 KB
testcase_15 AC 198 ms
16,512 KB
testcase_16 AC 220 ms
16,256 KB
testcase_17 AC 167 ms
16,512 KB
testcase_18 AC 277 ms
16,384 KB
testcase_19 AC 195 ms
16,128 KB
testcase_20 AC 189 ms
16,256 KB
testcase_21 AC 156 ms
16,000 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
arr = Array.new(500_010, 0)

N.times do
  x, r = gets.split.map(&:to_i)
  x += 250_000

  arr[x - r] += 1
  arr[x + r] -= 1
end

ans = 0

1.upto(500_000) do |i|
  arr[i] += arr[i - 1]
  ans = arr[i] if ans < arr[i]
end

puts ans
0