結果

問題 No.1137 Circles
ユーザー 小野寺健小野寺健
提出日時 2021-11-03 08:43:36
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,252 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 7,168 KB
実行使用メモリ 25,216 KB
最終ジャッジ日時 2024-10-12 20:32:15
合計ジャッジ時間 13,454 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,288 KB
testcase_01 AC 1,142 ms
25,088 KB
testcase_02 AC 98 ms
12,160 KB
testcase_03 AC 548 ms
17,920 KB
testcase_04 AC 801 ms
21,376 KB
testcase_05 AC 182 ms
13,568 KB
testcase_06 AC 934 ms
22,016 KB
testcase_07 AC 434 ms
16,256 KB
testcase_08 AC 988 ms
22,912 KB
testcase_09 AC 307 ms
14,976 KB
testcase_10 AC 499 ms
17,536 KB
testcase_11 AC 562 ms
18,816 KB
testcase_12 AC 1,252 ms
25,216 KB
testcase_13 AC 353 ms
15,104 KB
testcase_14 AC 1,186 ms
25,216 KB
testcase_15 AC 372 ms
15,744 KB
testcase_16 AC 566 ms
19,072 KB
testcase_17 AC 131 ms
12,672 KB
testcase_18 AC 968 ms
22,144 KB
testcase_19 AC 347 ms
15,872 KB
testcase_20 AC 260 ms
14,720 KB
testcase_21 AC 86 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i

coord = []

N.times {
	x, r = gets.split(" ").map{|s| s.to_i}
	coord << [x-r, 1]
	coord << [x+r, -1]
}

coord.sort!

cnt = 0
maxcnt = -1
coord.each{|x, d|
	cnt += d
	maxcnt = cnt if cnt > maxcnt
}

puts maxcnt
0