結果

問題 No.1137 Circles
ユーザー 河野竜也河野竜也
提出日時 2021-09-12 22:49:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 614 ms / 2,000 ms
コード長 185 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,592 KB
最終ジャッジ日時 2024-06-24 19:37:55
合計ジャッジ時間 10,437 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 243 ms
18,560 KB
testcase_01 AC 568 ms
30,336 KB
testcase_02 AC 270 ms
25,216 KB
testcase_03 AC 417 ms
30,208 KB
testcase_04 AC 492 ms
30,208 KB
testcase_05 AC 301 ms
29,184 KB
testcase_06 AC 518 ms
30,336 KB
testcase_07 AC 389 ms
29,952 KB
testcase_08 AC 533 ms
30,336 KB
testcase_09 AC 336 ms
29,568 KB
testcase_10 AC 396 ms
30,080 KB
testcase_11 AC 416 ms
30,080 KB
testcase_12 AC 614 ms
30,592 KB
testcase_13 AC 341 ms
29,696 KB
testcase_14 AC 587 ms
30,336 KB
testcase_15 AC 369 ms
29,824 KB
testcase_16 AC 417 ms
30,080 KB
testcase_17 AC 279 ms
28,160 KB
testcase_18 AC 531 ms
30,464 KB
testcase_19 AC 366 ms
29,824 KB
testcase_20 AC 323 ms
29,696 KB
testcase_21 AC 248 ms
18,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
d=[0]*(10**6)
m=2*(10**5)
for i in range(n):
  x,r=map(int,input().split())
  a=x-r+m
  b=x+r+m
  d[a]+=1
  d[b]-=1
for i in range(len(d)-1):
  d[i+1]+=d[i]
print(max(d))
0