結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
65,792 KB
testcase_01 AC 74 ms
82,176 KB
testcase_02 AC 50 ms
69,936 KB
testcase_03 AC 66 ms
82,304 KB
testcase_04 AC 70 ms
82,236 KB
testcase_05 AC 52 ms
73,472 KB
testcase_06 WA -
testcase_07 AC 64 ms
82,048 KB
testcase_08 AC 75 ms
82,020 KB
testcase_09 WA -
testcase_10 AC 64 ms
82,256 KB
testcase_11 AC 66 ms
82,040 KB
testcase_12 AC 82 ms
82,688 KB
testcase_13 AC 59 ms
79,360 KB
testcase_14 AC 78 ms
82,176 KB
testcase_15 AC 63 ms
82,340 KB
testcase_16 WA -
testcase_17 AC 58 ms
71,808 KB
testcase_18 WA -
testcase_19 AC 64 ms
80,508 KB
testcase_20 AC 61 ms
77,048 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

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

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
    imos[2*r+1] -= 1

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

print(max(imos))
0