結果

問題 No.1137 Circles
ユーザー 👑 rin204rin204
提出日時 2020-08-13 07:09:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 551 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-04-18 01:14:23
合計ジャッジ時間 9,263 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 213 ms
13,952 KB
testcase_01 AC 538 ms
13,952 KB
testcase_02 AC 242 ms
13,952 KB
testcase_03 AC 365 ms
13,952 KB
testcase_04 AC 429 ms
13,952 KB
testcase_05 AC 268 ms
13,952 KB
testcase_06 AC 475 ms
13,952 KB
testcase_07 AC 342 ms
13,824 KB
testcase_08 AC 483 ms
13,952 KB
testcase_09 AC 299 ms
13,952 KB
testcase_10 AC 354 ms
13,952 KB
testcase_11 AC 377 ms
13,952 KB
testcase_12 AC 551 ms
13,952 KB
testcase_13 AC 310 ms
13,824 KB
testcase_14 AC 518 ms
13,952 KB
testcase_15 AC 319 ms
13,952 KB
testcase_16 AC 388 ms
13,824 KB
testcase_17 AC 239 ms
14,080 KB
testcase_18 AC 478 ms
13,824 KB
testcase_19 AC 310 ms
13,824 KB
testcase_20 AC 292 ms
13,952 KB
testcase_21 AC 214 ms
13,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
cnt = [0 for _ in range(4 * 10 ** 5 + 1)]
C = 2 * 10 ** 5
for _ in range(n):
    x, r = map(int, input().split())
    cnt[x - r + C] += 1
    cnt[x + r + C] -= 1

ans = 0
total = 0
for num in cnt:
    total += num
    ans = max(ans, total)
print(ans)
0