結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
18,532 KB
testcase_01 AC 387 ms
30,528 KB
testcase_02 AC 77 ms
25,176 KB
testcase_03 AC 229 ms
30,200 KB
testcase_04 AC 297 ms
30,196 KB
testcase_05 AC 116 ms
29,088 KB
testcase_06 AC 340 ms
30,488 KB
testcase_07 AC 197 ms
30,076 KB
testcase_08 AC 352 ms
30,460 KB
testcase_09 AC 155 ms
29,680 KB
testcase_10 AC 212 ms
29,996 KB
testcase_11 AC 237 ms
30,236 KB
testcase_12 AC 437 ms
30,352 KB
testcase_13 AC 164 ms
29,784 KB
testcase_14 AC 406 ms
30,468 KB
testcase_15 AC 177 ms
29,796 KB
testcase_16 AC 235 ms
30,132 KB
testcase_17 AC 94 ms
28,156 KB
testcase_18 AC 349 ms
30,324 KB
testcase_19 AC 172 ms
29,804 KB
testcase_20 AC 144 ms
29,760 KB
testcase_21 AC 64 ms
18,536 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