結果

問題 No.1137 Circles
ユーザー pluto77pluto77
提出日時 2021-03-10 15:32:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 464 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,672 KB
最終ジャッジ日時 2024-10-12 05:58:04
合計ジャッジ時間 8,529 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
13,868 KB
testcase_01 AC 444 ms
25,640 KB
testcase_02 AC 135 ms
20,304 KB
testcase_03 AC 283 ms
25,348 KB
testcase_04 AC 353 ms
25,600 KB
testcase_05 AC 170 ms
24,364 KB
testcase_06 AC 386 ms
25,432 KB
testcase_07 AC 255 ms
25,216 KB
testcase_08 AC 408 ms
25,600 KB
testcase_09 AC 209 ms
24,892 KB
testcase_10 AC 267 ms
25,344 KB
testcase_11 AC 288 ms
25,216 KB
testcase_12 AC 464 ms
25,568 KB
testcase_13 AC 220 ms
25,084 KB
testcase_14 AC 453 ms
25,672 KB
testcase_15 AC 232 ms
25,088 KB
testcase_16 AC 286 ms
25,344 KB
testcase_17 AC 154 ms
23,296 KB
testcase_18 AC 392 ms
25,472 KB
testcase_19 AC 223 ms
25,088 KB
testcase_20 AC 195 ms
24,888 KB
testcase_21 AC 119 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1137
n=int(input())
a=[0]*(4*10**5+1)
for i 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