結果

問題 No.1137 Circles
ユーザー 河野竜也河野竜也
提出日時 2021-09-12 22:47:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 187 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,592 KB
最終ジャッジ日時 2024-06-24 19:34:33
合計ジャッジ時間 11,982 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 251 ms
18,688 KB
testcase_01 AC 597 ms
30,336 KB
testcase_02 AC 284 ms
25,216 KB
testcase_03 AC 446 ms
30,080 KB
testcase_04 AC 504 ms
30,208 KB
testcase_05 AC 327 ms
29,056 KB
testcase_06 WA -
testcase_07 AC 391 ms
30,080 KB
testcase_08 AC 544 ms
30,464 KB
testcase_09 WA -
testcase_10 AC 410 ms
30,080 KB
testcase_11 AC 437 ms
30,208 KB
testcase_12 AC 667 ms
30,592 KB
testcase_13 AC 358 ms
29,696 KB
testcase_14 AC 606 ms
30,336 KB
testcase_15 AC 372 ms
29,824 KB
testcase_16 WA -
testcase_17 AC 290 ms
28,032 KB
testcase_18 WA -
testcase_19 AC 363 ms
29,824 KB
testcase_20 AC 341 ms
29,568 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

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+1
  d[a]+=1
  d[b]-=1
for i in range(len(d)-1):
  d[i+1]+=d[i]
print(max(d))
0