結果

問題 No.1137 Circles
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-20 18:30:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 411 ms / 2,000 ms
コード長 206 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,444 KB
最終ジャッジ日時 2024-11-24 01:27:22
合計ジャッジ時間 6,414 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
18,644 KB
testcase_01 AC 376 ms
30,316 KB
testcase_02 AC 74 ms
25,132 KB
testcase_03 AC 222 ms
30,272 KB
testcase_04 AC 289 ms
30,208 KB
testcase_05 AC 110 ms
29,084 KB
testcase_06 AC 324 ms
30,352 KB
testcase_07 AC 187 ms
29,864 KB
testcase_08 AC 331 ms
30,372 KB
testcase_09 AC 146 ms
29,600 KB
testcase_10 AC 202 ms
29,936 KB
testcase_11 AC 230 ms
30,204 KB
testcase_12 AC 411 ms
30,436 KB
testcase_13 AC 155 ms
29,728 KB
testcase_14 AC 391 ms
30,444 KB
testcase_15 AC 167 ms
29,844 KB
testcase_16 AC 227 ms
30,208 KB
testcase_17 AC 88 ms
28,076 KB
testcase_18 AC 336 ms
30,240 KB
testcase_19 AC 163 ms
29,896 KB
testcase_20 AC 137 ms
29,488 KB
testcase_21 AC 56 ms
18,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
n=int(input())
p=[0]*(5*(10**5)+100)
for _ in range(n):
    x,r=map(int,input().split())
    x+=(10**5)*2+100
    p[x-r]+=1
    p[x+r]-=1
q=list(accumulate(p))
print(max(q))
0