結果

問題 No.1137 Circles
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-20 18:27:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 208 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,488 KB
最終ジャッジ日時 2024-11-24 01:25:47
合計ジャッジ時間 7,272 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
18,432 KB
testcase_01 AC 397 ms
30,308 KB
testcase_02 AC 80 ms
25,088 KB
testcase_03 AC 236 ms
30,044 KB
testcase_04 AC 316 ms
30,208 KB
testcase_05 AC 118 ms
28,928 KB
testcase_06 WA -
testcase_07 AC 194 ms
29,916 KB
testcase_08 AC 349 ms
30,464 KB
testcase_09 WA -
testcase_10 AC 213 ms
29,952 KB
testcase_11 AC 239 ms
30,112 KB
testcase_12 AC 432 ms
30,380 KB
testcase_13 AC 167 ms
29,672 KB
testcase_14 AC 412 ms
30,336 KB
testcase_15 AC 176 ms
29,812 KB
testcase_16 WA -
testcase_17 AC 94 ms
27,904 KB
testcase_18 WA -
testcase_19 AC 169 ms
29,696 KB
testcase_20 AC 145 ms
29,440 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

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]-=1
q=list(accumulate(p))
print(max(q))
0