結果

問題 No.1137 Circles
ユーザー hir355hir355
提出日時 2020-08-01 23:06:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 410 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 25,600 KB
最終ジャッジ日時 2024-07-08 10:28:49
合計ジャッジ時間 6,599 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
13,592 KB
testcase_01 AC 378 ms
25,600 KB
testcase_02 AC 115 ms
20,352 KB
testcase_03 AC 249 ms
25,216 KB
testcase_04 AC 311 ms
25,600 KB
testcase_05 AC 156 ms
24,024 KB
testcase_06 AC 337 ms
25,472 KB
testcase_07 AC 227 ms
25,052 KB
testcase_08 AC 337 ms
25,444 KB
testcase_09 AC 184 ms
24,800 KB
testcase_10 AC 231 ms
25,088 KB
testcase_11 AC 261 ms
25,216 KB
testcase_12 AC 410 ms
25,472 KB
testcase_13 AC 188 ms
24,832 KB
testcase_14 AC 396 ms
25,488 KB
testcase_15 AC 205 ms
24,848 KB
testcase_16 AC 254 ms
25,168 KB
testcase_17 AC 136 ms
23,040 KB
testcase_18 AC 347 ms
25,344 KB
testcase_19 AC 203 ms
24,832 KB
testcase_20 AC 171 ms
24,704 KB
testcase_21 AC 107 ms
13,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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