結果

問題 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
コンパイル時間 196 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,532 KB
最終ジャッジ日時 2024-05-03 04:14:46
合計ジャッジ時間 6,994 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
18,460 KB
testcase_01 AC 393 ms
30,308 KB
testcase_02 AC 76 ms
25,416 KB
testcase_03 AC 224 ms
30,052 KB
testcase_04 AC 300 ms
30,180 KB
testcase_05 AC 114 ms
29,148 KB
testcase_06 WA -
testcase_07 AC 197 ms
29,868 KB
testcase_08 AC 355 ms
30,424 KB
testcase_09 WA -
testcase_10 AC 210 ms
30,052 KB
testcase_11 AC 233 ms
30,052 KB
testcase_12 AC 426 ms
30,372 KB
testcase_13 AC 162 ms
29,788 KB
testcase_14 AC 403 ms
30,336 KB
testcase_15 AC 176 ms
29,824 KB
testcase_16 WA -
testcase_17 AC 93 ms
28,088 KB
testcase_18 WA -
testcase_19 AC 169 ms
29,948 KB
testcase_20 AC 141 ms
29,544 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