結果

問題 No.1137 Circles
ユーザー CleyLCleyL
提出日時 2023-06-29 13:15:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 637 ms
コンパイル使用メモリ 81,336 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2024-07-06 04:24:40
合計ジャッジ時間 3,410 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 102 ms
9,472 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 55 ms
6,912 KB
testcase_04 AC 77 ms
8,064 KB
testcase_05 AC 12 ms
5,376 KB
testcase_06 AC 86 ms
8,832 KB
testcase_07 AC 37 ms
6,144 KB
testcase_08 AC 90 ms
8,960 KB
testcase_09 AC 24 ms
5,376 KB
testcase_10 AC 42 ms
6,400 KB
testcase_11 AC 50 ms
6,784 KB
testcase_12 AC 124 ms
10,112 KB
testcase_13 AC 27 ms
5,376 KB
testcase_14 AC 118 ms
9,856 KB
testcase_15 AC 31 ms
5,760 KB
testcase_16 AC 55 ms
6,912 KB
testcase_17 AC 6 ms
5,376 KB
testcase_18 AC 91 ms
8,832 KB
testcase_19 AC 28 ms
5,632 KB
testcase_20 AC 20 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
using namespace std;

int main(){
  int n;cin>>n;
  map<int,int> A;
  for(int i = 0; n > i; i++){
    int x,y;cin>>x>>y;
    A[(x-y)]++;
    A[(x+y)]--;
  }
  int nw = 0;
  int ans = 0;
  for(auto z: A) {
    nw += z.second;
    ans = max(nw,ans);
  }
  cout << ans << endl;
}
0