結果

問題 No.1137 Circles
ユーザー 小野寺健小野寺健
提出日時 2021-11-03 08:41:40
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 237 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 26,880 KB
最終ジャッジ日時 2024-10-12 20:29:00
合計ジャッジ時間 7,160 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
12,032 KB
testcase_01 AC 364 ms
26,368 KB
testcase_02 AC 91 ms
12,288 KB
testcase_03 AC 208 ms
18,816 KB
testcase_04 AC 269 ms
22,272 KB
testcase_05 AC 116 ms
13,568 KB
testcase_06 AC 320 ms
22,784 KB
testcase_07 AC 182 ms
16,896 KB
testcase_08 AC 315 ms
23,680 KB
testcase_09 WA -
testcase_10 AC 201 ms
18,176 KB
testcase_11 AC 215 ms
19,328 KB
testcase_12 AC 391 ms
26,880 KB
testcase_13 AC 157 ms
15,360 KB
testcase_14 AC 372 ms
26,496 KB
testcase_15 AC 164 ms
16,256 KB
testcase_16 WA -
testcase_17 AC 102 ms
12,672 KB
testcase_18 AC 325 ms
22,912 KB
testcase_19 AC 160 ms
16,128 KB
testcase_20 AC 137 ms
14,720 KB
testcase_21 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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_by!{|x| x[0]}

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

puts maxcnt
0