結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
61,440 KB
testcase_01 AC 69 ms
78,720 KB
testcase_02 AC 43 ms
64,896 KB
testcase_03 AC 57 ms
78,592 KB
testcase_04 AC 68 ms
78,848 KB
testcase_05 AC 48 ms
69,120 KB
testcase_06 AC 68 ms
79,360 KB
testcase_07 AC 57 ms
79,088 KB
testcase_08 AC 67 ms
78,780 KB
testcase_09 AC 51 ms
73,088 KB
testcase_10 AC 60 ms
78,548 KB
testcase_11 AC 62 ms
78,760 KB
testcase_12 AC 73 ms
79,360 KB
testcase_13 AC 53 ms
74,240 KB
testcase_14 AC 71 ms
78,948 KB
testcase_15 AC 54 ms
76,544 KB
testcase_16 AC 60 ms
78,976 KB
testcase_17 AC 45 ms
66,560 KB
testcase_18 AC 66 ms
78,848 KB
testcase_19 AC 53 ms
74,752 KB
testcase_20 AC 49 ms
72,448 KB
testcase_21 AC 37 ms
61,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
imos = [0]*(4*10**5+1)

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

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

print(max(imos))
0