結果

問題 No.1137 Circles
ユーザー 双六双六
提出日時 2020-08-19 17:52:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 84,864 KB
最終ジャッジ日時 2024-10-12 05:07:06
合計ジャッジ時間 4,920 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
66,944 KB
testcase_01 AC 165 ms
84,736 KB
testcase_02 AC 84 ms
80,000 KB
testcase_03 AC 123 ms
84,352 KB
testcase_04 AC 140 ms
84,420 KB
testcase_05 AC 94 ms
84,480 KB
testcase_06 AC 141 ms
84,708 KB
testcase_07 AC 115 ms
84,224 KB
testcase_08 AC 148 ms
84,328 KB
testcase_09 AC 103 ms
84,232 KB
testcase_10 AC 116 ms
84,272 KB
testcase_11 AC 119 ms
84,320 KB
testcase_12 AC 159 ms
84,276 KB
testcase_13 AC 108 ms
84,212 KB
testcase_14 AC 158 ms
84,404 KB
testcase_15 AC 109 ms
84,480 KB
testcase_16 AC 124 ms
84,352 KB
testcase_17 AC 89 ms
84,224 KB
testcase_18 AC 145 ms
84,480 KB
testcase_19 AC 106 ms
84,352 KB
testcase_20 AC 105 ms
84,864 KB
testcase_21 AC 53 ms
66,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import sys; input = sys.stdin.buffer.readline
# sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	N = int(input())
	imos = [0] * (10 ** 6)
	for i in range(N):
		x, r = getlist()
		x += 3 * 10 ** 5 + 10
		imos[2 * x - 2 * r + 1] += 1
		imos[2 * x + 2 * r] -= 1

	ans = 0
	for i in range(1, 10 ** 6):
		imos[i] += imos[i - 1]
		ans = max(ans, imos[i])

	print(ans)

if __name__ == '__main__':
	main()
0