結果

問題 No.1137 Circles
ユーザー roarisroaris
提出日時 2020-07-27 23:04:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 82,560 KB
最終ジャッジ日時 2024-06-28 20:19:36
合計ジャッジ時間 2,963 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
64,128 KB
testcase_01 AC 105 ms
81,792 KB
testcase_02 AC 61 ms
67,968 KB
testcase_03 AC 85 ms
81,792 KB
testcase_04 AC 94 ms
81,920 KB
testcase_05 AC 69 ms
71,680 KB
testcase_06 AC 97 ms
81,920 KB
testcase_07 AC 86 ms
82,560 KB
testcase_08 AC 102 ms
82,176 KB
testcase_09 AC 75 ms
76,416 KB
testcase_10 AC 86 ms
81,536 KB
testcase_11 AC 88 ms
82,432 KB
testcase_12 AC 105 ms
82,048 KB
testcase_13 AC 75 ms
77,696 KB
testcase_14 AC 107 ms
81,792 KB
testcase_15 AC 81 ms
78,848 KB
testcase_16 AC 90 ms
81,920 KB
testcase_17 AC 66 ms
69,248 KB
testcase_18 AC 98 ms
82,176 KB
testcase_19 AC 79 ms
78,720 KB
testcase_20 AC 75 ms
75,008 KB
testcase_21 AC 56 ms
64,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
imos = [0]*(8*10**5+2)

for _ in range(N):
    x, r = map(int, input().split())
    l = x-r+2*10**5
    r = x+r+2*10**5
    imos[2*l+1] += 1
    imos[2*r] -= 1

for i in range(1, 8*10**5+2):
    imos[i] += imos[i-1]

print(max(imos))
0