結果

問題 No.1137 Circles
ユーザー 37zigen37zigen
提出日時 2020-07-28 15:19:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 465 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 50,048 KB
最終ジャッジ日時 2024-06-28 20:42:40
合計ジャッジ時間 6,498 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
26,368 KB
testcase_01 AC 415 ms
49,920 KB
testcase_02 AC 97 ms
39,552 KB
testcase_03 AC 265 ms
49,536 KB
testcase_04 AC 333 ms
49,664 KB
testcase_05 AC 145 ms
47,488 KB
testcase_06 AC 369 ms
50,048 KB
testcase_07 AC 216 ms
49,264 KB
testcase_08 AC 367 ms
49,920 KB
testcase_09 AC 176 ms
48,640 KB
testcase_10 AC 235 ms
49,152 KB
testcase_11 AC 257 ms
49,536 KB
testcase_12 AC 465 ms
50,048 KB
testcase_13 AC 192 ms
48,696 KB
testcase_14 AC 432 ms
50,048 KB
testcase_15 AC 220 ms
49,024 KB
testcase_16 AC 278 ms
49,572 KB
testcase_17 AC 125 ms
45,416 KB
testcase_18 AC 394 ms
49,792 KB
testcase_19 AC 195 ms
48,896 KB
testcase_20 AC 169 ms
48,504 KB
testcase_21 AC 72 ms
26,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
N=int(input())
a=[0]*(10**6)
for _ in range(N):
    x,r=map(int,input().split())
    x+=2*10**5
    x*=2
    r*=2
    a[max(0,x-r+1)]+=1
    a[x+r]-=1
a=list(itertools.accumulate(a))
print(max(a))
0