結果

問題 No.1137 Circles
ユーザー lloyzlloyz
提出日時 2022-10-07 00:02:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 79,872 KB
最終ジャッジ日時 2024-06-11 10:26:58
合計ジャッジ時間 3,778 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
61,440 KB
testcase_01 AC 140 ms
79,488 KB
testcase_02 AC 80 ms
71,808 KB
testcase_03 AC 111 ms
79,488 KB
testcase_04 AC 123 ms
79,488 KB
testcase_05 AC 88 ms
77,312 KB
testcase_06 AC 130 ms
79,488 KB
testcase_07 AC 104 ms
79,616 KB
testcase_08 AC 131 ms
79,360 KB
testcase_09 AC 98 ms
79,488 KB
testcase_10 AC 107 ms
79,488 KB
testcase_11 AC 109 ms
79,360 KB
testcase_12 AC 141 ms
79,488 KB
testcase_13 AC 99 ms
79,872 KB
testcase_14 AC 140 ms
79,488 KB
testcase_15 AC 101 ms
79,616 KB
testcase_16 AC 112 ms
79,360 KB
testcase_17 AC 83 ms
73,984 KB
testcase_18 AC 141 ms
79,360 KB
testcase_19 AC 111 ms
79,488 KB
testcase_20 AC 101 ms
79,360 KB
testcase_21 AC 51 ms
61,312 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