結果

問題 No.1137 Circles
ユーザー lloyzlloyz
提出日時 2022-10-07 00:02:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 445 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,856 KB
最終ジャッジ日時 2024-06-11 10:27:41
合計ジャッジ時間 7,534 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
13,952 KB
testcase_01 AC 402 ms
25,856 KB
testcase_02 AC 143 ms
20,608 KB
testcase_03 AC 276 ms
25,600 KB
testcase_04 AC 351 ms
25,728 KB
testcase_05 AC 178 ms
24,576 KB
testcase_06 AC 370 ms
25,728 KB
testcase_07 AC 253 ms
25,344 KB
testcase_08 AC 417 ms
25,728 KB
testcase_09 AC 220 ms
25,088 KB
testcase_10 AC 261 ms
25,472 KB
testcase_11 AC 276 ms
25,472 KB
testcase_12 AC 445 ms
25,856 KB
testcase_13 AC 219 ms
25,216 KB
testcase_14 AC 433 ms
25,856 KB
testcase_15 AC 225 ms
25,216 KB
testcase_16 AC 290 ms
25,472 KB
testcase_17 AC 164 ms
23,552 KB
testcase_18 AC 377 ms
25,728 KB
testcase_19 AC 240 ms
25,216 KB
testcase_20 AC 214 ms
24,960 KB
testcase_21 AC 133 ms
13,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
accumA = [0 for _ in range(4 * 10**5 + 10)]
for _ in range(n):
    x, r = map(int, input().split())
    accumA[x - r + 2 * 10**5] += 1
    accumA[x + r + 2 * 10**5] -= 1
for i in range(4 * 10**5 + 5):
    accumA[i + 1] += accumA[i]
print(max(accumA))
0