結果

問題 No.1137 Circles
ユーザー lloyzlloyz
提出日時 2022-10-07 00:01:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 272 bytes
コンパイル時間 526 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 79,744 KB
最終ジャッジ日時 2024-06-11 10:26:13
合計ジャッジ時間 3,310 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
61,440 KB
testcase_01 AC 120 ms
79,488 KB
testcase_02 AC 76 ms
71,808 KB
testcase_03 AC 100 ms
79,360 KB
testcase_04 AC 111 ms
79,488 KB
testcase_05 AC 78 ms
77,952 KB
testcase_06 WA -
testcase_07 AC 91 ms
79,488 KB
testcase_08 AC 115 ms
79,360 KB
testcase_09 WA -
testcase_10 AC 97 ms
79,360 KB
testcase_11 AC 97 ms
79,360 KB
testcase_12 AC 122 ms
79,360 KB
testcase_13 AC 87 ms
79,360 KB
testcase_14 AC 123 ms
79,360 KB
testcase_15 AC 90 ms
79,488 KB
testcase_16 WA -
testcase_17 AC 71 ms
74,112 KB
testcase_18 WA -
testcase_19 AC 96 ms
79,488 KB
testcase_20 AC 84 ms
79,104 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

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] -= 1
for i in range(4 * 10**5 + 5):
    accumA[i + 1] += accumA[i]
print(max(accumA))
0