結果

問題 No.1137 Circles
ユーザー flippergoflippergo
提出日時 2024-10-04 18:30:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 82,860 KB
最終ジャッジ日時 2024-10-04 18:30:23
合計ジャッジ時間 2,841 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
64,740 KB
testcase_01 AC 101 ms
82,604 KB
testcase_02 AC 62 ms
76,116 KB
testcase_03 AC 85 ms
82,504 KB
testcase_04 AC 97 ms
82,368 KB
testcase_05 AC 69 ms
80,296 KB
testcase_06 AC 101 ms
82,604 KB
testcase_07 AC 83 ms
82,832 KB
testcase_08 AC 101 ms
82,488 KB
testcase_09 AC 74 ms
82,816 KB
testcase_10 AC 79 ms
82,424 KB
testcase_11 AC 83 ms
82,536 KB
testcase_12 AC 112 ms
82,412 KB
testcase_13 AC 75 ms
82,860 KB
testcase_14 AC 105 ms
82,488 KB
testcase_15 AC 76 ms
82,568 KB
testcase_16 AC 85 ms
82,608 KB
testcase_17 AC 63 ms
78,124 KB
testcase_18 AC 99 ms
82,568 KB
testcase_19 AC 76 ms
82,508 KB
testcase_20 AC 72 ms
82,672 KB
testcase_21 AC 41 ms
65,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

BASE = 2*10**5
N = int(input())
A = [0]*(4*BASE+1)
for _ in range(N):
    x,r = map(int,input().split())
    A[2*(x+BASE-r)+1] += 1
    A[2*(x+BASE+r)] -= 1
for i in range(1,4*BASE+1):
    A[i] += A[i-1]
print(max(A))
0