結果

問題 No.1137 Circles
ユーザー 小野寺健小野寺健
提出日時 2021-12-19 21:01:42
言語 Go
(1.22.1)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 14,802 ms
コンパイル使用メモリ 236,200 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-09-15 14:48:22
合計ジャッジ時間 18,293 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 126 ms
6,272 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 60 ms
5,376 KB
testcase_04 AC 92 ms
5,632 KB
testcase_05 AC 15 ms
5,376 KB
testcase_06 AC 107 ms
5,760 KB
testcase_07 AC 47 ms
5,376 KB
testcase_08 AC 113 ms
5,632 KB
testcase_09 AC 31 ms
5,376 KB
testcase_10 AC 53 ms
5,376 KB
testcase_11 AC 63 ms
5,376 KB
testcase_12 AC 144 ms
7,168 KB
testcase_13 AC 34 ms
5,376 KB
testcase_14 AC 135 ms
6,656 KB
testcase_15 AC 39 ms
5,376 KB
testcase_16 AC 63 ms
5,376 KB
testcase_17 AC 8 ms
5,376 KB
testcase_18 AC 111 ms
5,760 KB
testcase_19 AC 36 ms
5,376 KB
testcase_20 AC 25 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"bufio"
	"os"
	"sort"
)

func main() {
	r := bufio.NewReader(os.Stdin)
	w := bufio.NewWriter(os.Stdout)
	defer w.Flush()
	var N int
	fmt.Fscan(r, &N)
	coord := make([][2]int, N*2)
	for i := 0; i < N; i++ {
		var x, radius int
		fmt.Fscan(r, &x, &radius)
		coord[2*i] = [2]int{x-radius, 1}
		coord[2*i+1] = [2]int{x+radius, -1}
	}
	sort.Slice(coord, func(i, j int) bool {if coord[i][0] < coord[j][0] { return true } else if coord[i][0] > coord[j][0] { return false } else { return coord[i][1] < coord[j][1]} })
	cnt := 0
	maxcnt := -1
	for _, d := range coord {
		cnt += d[1]
		if cnt > maxcnt {
			maxcnt = cnt
		}
	}
	fmt.Fprintln(w, maxcnt)
}
0