結果

問題 No.1137 Circles
ユーザー titiatitia
提出日時 2023-11-22 03:37:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 184 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 30,336 KB
最終ジャッジ日時 2024-09-26 07:22:32
合計ジャッジ時間 10,989 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 247 ms
18,432 KB
testcase_01 AC 533 ms
30,208 KB
testcase_02 AC 251 ms
25,088 KB
testcase_03 AC 402 ms
29,952 KB
testcase_04 AC 472 ms
29,952 KB
testcase_05 AC 306 ms
28,800 KB
testcase_06 WA -
testcase_07 AC 381 ms
29,824 KB
testcase_08 AC 505 ms
30,080 KB
testcase_09 WA -
testcase_10 AC 385 ms
29,824 KB
testcase_11 AC 402 ms
30,080 KB
testcase_12 AC 576 ms
30,208 KB
testcase_13 AC 326 ms
29,568 KB
testcase_14 AC 569 ms
30,208 KB
testcase_15 AC 336 ms
29,568 KB
testcase_16 WA -
testcase_17 AC 261 ms
27,776 KB
testcase_18 WA -
testcase_19 AC 328 ms
29,568 KB
testcase_20 AC 313 ms
29,312 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
S=[0]*(10**6)


for i in range(n):
    x,r=map(int,input().split())

    x+=300000
    S[x-r]+=1
    S[x+r+1]-=1

for i in range(10**6):
    S[i]+=S[i-1]

print(max(S))
0