結果

問題 No.1137 Circles
ユーザー rlangevinrlangevin
提出日時 2023-01-18 12:30:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 84,352 KB
最終ジャッジ日時 2024-06-11 14:47:34
合計ジャッジ時間 4,267 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
65,792 KB
testcase_01 AC 126 ms
83,840 KB
testcase_02 AC 72 ms
76,032 KB
testcase_03 AC 101 ms
84,096 KB
testcase_04 AC 110 ms
84,096 KB
testcase_05 AC 80 ms
81,792 KB
testcase_06 AC 114 ms
83,968 KB
testcase_07 AC 94 ms
83,968 KB
testcase_08 AC 115 ms
83,968 KB
testcase_09 AC 93 ms
83,968 KB
testcase_10 AC 99 ms
83,840 KB
testcase_11 AC 100 ms
83,840 KB
testcase_12 AC 124 ms
84,224 KB
testcase_13 AC 89 ms
84,096 KB
testcase_14 AC 124 ms
84,352 KB
testcase_15 AC 90 ms
84,224 KB
testcase_16 AC 99 ms
83,968 KB
testcase_17 AC 74 ms
78,336 KB
testcase_18 AC 115 ms
83,968 KB
testcase_19 AC 92 ms
84,096 KB
testcase_20 AC 86 ms
83,968 KB
testcase_21 AC 48 ms
65,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
geta = 101010 * 2
M = 505050
A = [0] * M
for i in range(N):
    x, r = map(int, input().split())
    A[x - r + 1 + geta] += 1
    A[x + r + geta + 1] -= 1
Ac = [0] * (M + 1)
for i in range(M):
    Ac[i + 1] = Ac[i] + A[i]
print(max(Ac)) 
0