結果

問題 No.1137 Circles
ユーザー titiatitia
提出日時 2023-11-22 03:40:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 658 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 42,240 KB
最終ジャッジ日時 2024-09-26 07:22:56
合計ジャッジ時間 10,829 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 242 ms
18,560 KB
testcase_01 AC 592 ms
42,240 KB
testcase_02 AC 266 ms
31,872 KB
testcase_03 AC 430 ms
41,472 KB
testcase_04 AC 491 ms
41,856 KB
testcase_05 AC 332 ms
39,424 KB
testcase_06 AC 546 ms
42,112 KB
testcase_07 AC 408 ms
41,344 KB
testcase_08 AC 572 ms
41,984 KB
testcase_09 AC 363 ms
40,576 KB
testcase_10 AC 433 ms
41,344 KB
testcase_11 AC 449 ms
41,600 KB
testcase_12 AC 658 ms
42,240 KB
testcase_13 AC 384 ms
40,832 KB
testcase_14 AC 630 ms
42,240 KB
testcase_15 AC 390 ms
40,960 KB
testcase_16 AC 446 ms
41,472 KB
testcase_17 AC 305 ms
37,504 KB
testcase_18 AC 580 ms
41,984 KB
testcase_19 AC 381 ms
41,088 KB
testcase_20 AC 352 ms
40,448 KB
testcase_21 AC 255 ms
18,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


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

    x+=500000
    S[x-2*r+1]+=1
    S[x+2*r]-=1

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

print(max(S))
0