結果

問題 No.1137 Circles
ユーザー 👑 KazunKazun
提出日時 2020-07-26 22:33:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 496 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 89,096 KB
最終ジャッジ日時 2024-06-28 19:31:25
合計ジャッジ時間 3,059 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
70,656 KB
testcase_01 AC 118 ms
88,656 KB
testcase_02 AC 71 ms
81,536 KB
testcase_03 AC 97 ms
89,056 KB
testcase_04 AC 109 ms
89,088 KB
testcase_05 AC 78 ms
87,424 KB
testcase_06 AC 115 ms
89,040 KB
testcase_07 AC 91 ms
88,932 KB
testcase_08 AC 119 ms
88,832 KB
testcase_09 AC 88 ms
89,044 KB
testcase_10 AC 94 ms
89,088 KB
testcase_11 AC 101 ms
89,072 KB
testcase_12 AC 130 ms
89,028 KB
testcase_13 AC 90 ms
88,936 KB
testcase_14 AC 131 ms
88,704 KB
testcase_15 AC 92 ms
88,576 KB
testcase_16 AC 92 ms
88,684 KB
testcase_17 AC 68 ms
83,584 KB
testcase_18 AC 111 ms
89,016 KB
testcase_19 AC 83 ms
88,724 KB
testcase_20 AC 78 ms
89,096 KB
testcase_21 AC 45 ms
70,528 KB
権限があれば一括ダウンロードができます

ソースコード

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(8*G+1)
for _ in range(N):
    x,r=map(int,input().split())
    K.Add(2*(x-r)+4*G+1,2*(x+r)+4*G-1,1)
print(max(K.Cumulative_Sum()))
0