結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 234 ms
13,824 KB
testcase_01 AC 551 ms
13,952 KB
testcase_02 AC 242 ms
13,952 KB
testcase_03 AC 392 ms
13,952 KB
testcase_04 AC 465 ms
13,952 KB
testcase_05 AC 270 ms
13,952 KB
testcase_06 AC 490 ms
13,952 KB
testcase_07 AC 357 ms
14,080 KB
testcase_08 AC 509 ms
13,952 KB
testcase_09 AC 312 ms
13,952 KB
testcase_10 AC 367 ms
13,952 KB
testcase_11 AC 398 ms
13,952 KB
testcase_12 AC 582 ms
13,952 KB
testcase_13 AC 318 ms
13,952 KB
testcase_14 AC 561 ms
13,952 KB
testcase_15 AC 331 ms
13,952 KB
testcase_16 AC 392 ms
13,952 KB
testcase_17 AC 250 ms
13,952 KB
testcase_18 AC 500 ms
13,952 KB
testcase_19 AC 324 ms
13,952 KB
testcase_20 AC 305 ms
13,952 KB
testcase_21 AC 225 ms
13,824 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