結果

問題 No.1137 Circles
ユーザー first_vilfirst_vil
提出日時 2020-07-27 14:28:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 820 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 31,128 KB
最終ジャッジ日時 2024-06-28 20:06:15
合計ジャッジ時間 8,635 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 727 ms
28,664 KB
testcase_02 AC 39 ms
10,752 KB
testcase_03 AC 345 ms
19,200 KB
testcase_04 AC 535 ms
23,676 KB
testcase_05 AC 100 ms
12,672 KB
testcase_06 AC 606 ms
25,800 KB
testcase_07 AC 270 ms
17,280 KB
testcase_08 AC 647 ms
26,424 KB
testcase_09 AC 182 ms
15,104 KB
testcase_10 AC 305 ms
18,420 KB
testcase_11 AC 358 ms
19,548 KB
testcase_12 AC 820 ms
31,128 KB
testcase_13 AC 200 ms
15,488 KB
testcase_14 AC 771 ms
29,868 KB
testcase_15 AC 226 ms
16,128 KB
testcase_16 AC 360 ms
19,556 KB
testcase_17 AC 61 ms
11,520 KB
testcase_18 AC 636 ms
26,108 KB
testcase_19 AC 209 ms
15,616 KB
testcase_20 AC 151 ms
14,336 KB
testcase_21 AC 29 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=[]
for _ in range(n):
    x,r=map(int,input().split())
    a.append((x-r,1))
    a.append((x+r,-1))
a.sort()
i=0
ans=0
cur=0
while i<n*2:
    b=a[i][0]
    while i<n*2 and a[i][0]==b:
        cur+=a[i][1]
        i+=1
    ans=max(ans,cur)
print(ans)
0