結果

問題 No.1137 Circles
ユーザー brthyyjpbrthyyjp
提出日時 2020-10-30 15:39:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 1,353 ms
コンパイル使用メモリ 81,712 KB
実行使用メモリ 107,432 KB
最終ジャッジ日時 2024-07-21 22:50:44
合計ジャッジ時間 4,519 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
96,124 KB
testcase_01 AC 99 ms
107,268 KB
testcase_02 AC 70 ms
99,712 KB
testcase_03 AC 82 ms
95,744 KB
testcase_04 AC 91 ms
107,432 KB
testcase_05 AC 75 ms
102,016 KB
testcase_06 AC 93 ms
107,264 KB
testcase_07 AC 83 ms
106,708 KB
testcase_08 AC 96 ms
107,388 KB
testcase_09 AC 80 ms
104,448 KB
testcase_10 AC 85 ms
101,116 KB
testcase_11 AC 88 ms
93,956 KB
testcase_12 AC 101 ms
107,264 KB
testcase_13 AC 81 ms
105,136 KB
testcase_14 AC 102 ms
107,364 KB
testcase_15 AC 83 ms
105,728 KB
testcase_16 AC 86 ms
94,240 KB
testcase_17 AC 75 ms
100,948 KB
testcase_18 AC 97 ms
107,120 KB
testcase_19 AC 84 ms
104,832 KB
testcase_20 AC 80 ms
103,168 KB
testcase_21 AC 65 ms
96,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = sys.stdin.buffer.readline

n = int(input())
M = 2*10**5
imos = [0]*(2*M+2)
for i in range(n):
    x, r = map(int, input().split())
    a = x-r+M
    b = x+r+M
    imos[a] += 1
    imos[b] -= 1
from itertools import accumulate
imos = list(accumulate(imos))
ans = max(imos)
print(ans)
0