結果

問題 No.1137 Circles
ユーザー 👑 KazunKazun
提出日時 2020-07-26 22:38:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 82,816 KB
最終ジャッジ日時 2024-06-28 19:32:10
合計ジャッジ時間 3,663 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
64,256 KB
testcase_01 AC 142 ms
82,688 KB
testcase_02 AC 82 ms
74,880 KB
testcase_03 AC 119 ms
82,816 KB
testcase_04 AC 128 ms
82,432 KB
testcase_05 AC 93 ms
80,768 KB
testcase_06 AC 133 ms
82,432 KB
testcase_07 AC 109 ms
82,560 KB
testcase_08 AC 137 ms
82,816 KB
testcase_09 AC 102 ms
82,560 KB
testcase_10 AC 111 ms
82,816 KB
testcase_11 AC 113 ms
82,304 KB
testcase_12 AC 148 ms
82,688 KB
testcase_13 AC 103 ms
82,816 KB
testcase_14 AC 145 ms
82,432 KB
testcase_15 AC 105 ms
82,560 KB
testcase_16 AC 113 ms
82,304 KB
testcase_17 AC 85 ms
77,312 KB
testcase_18 AC 132 ms
82,304 KB
testcase_19 AC 105 ms
82,560 KB
testcase_20 AC 100 ms
82,688 KB
testcase_21 AC 54 ms
64,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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