結果

問題 No.1137 Circles
ユーザー 👑 KazunKazun
提出日時 2020-07-26 22:30:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 484 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 82,816 KB
最終ジャッジ日時 2024-06-28 19:31:16
合計ジャッジ時間 3,550 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
63,616 KB
testcase_01 AC 140 ms
82,432 KB
testcase_02 AC 83 ms
75,392 KB
testcase_03 AC 115 ms
82,560 KB
testcase_04 AC 125 ms
82,432 KB
testcase_05 AC 89 ms
80,896 KB
testcase_06 WA -
testcase_07 AC 107 ms
82,304 KB
testcase_08 AC 133 ms
82,560 KB
testcase_09 WA -
testcase_10 AC 109 ms
82,688 KB
testcase_11 AC 112 ms
82,560 KB
testcase_12 AC 140 ms
82,432 KB
testcase_13 AC 101 ms
82,432 KB
testcase_14 AC 141 ms
82,432 KB
testcase_15 AC 104 ms
82,560 KB
testcase_16 WA -
testcase_17 AC 84 ms
77,056 KB
testcase_18 WA -
testcase_19 AC 100 ms
82,432 KB
testcase_20 AC 96 ms
82,432 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

class Imos_1:
    def __init__(self,N):
        self.len=N
        self.list=[0]*(N+1)

    def Add(self,F,T,C=1):
        self.list[F]+=C
        self.list[T+1]-=C

    def Cumulative_Sum(self):
        Y=[0]*(self.len)
        S=0
        for i in range(self.len):
            S+=self.list[i]
            Y[i]=S

        return Y

N=int(input())
G=10**5
K=Imos_1(4*G+1)
for _ in range(N):
    x,r=map(int,input().split())
    K.Add(x-r+2*G,x+r+2*G,1)
print(max(K.Cumulative_Sum()))
0