結果

問題 No.202 1円玉投げ
ユーザー not_522not_522
提出日時 2015-08-17 12:23:25
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 454 ms / 5,000 ms
コード長 1,221 bytes
コンパイル時間 1,437 ms
コンパイル使用メモリ 169,924 KB
実行使用メモリ 58,624 KB
最終ジャッジ日時 2024-06-01 20:36:25
合計ジャッジ時間 7,616 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 182 ms
14,336 KB
testcase_01 AC 346 ms
58,624 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 20 ms
7,552 KB
testcase_06 AC 361 ms
46,720 KB
testcase_07 AC 411 ms
50,048 KB
testcase_08 AC 406 ms
50,432 KB
testcase_09 AC 208 ms
34,048 KB
testcase_10 AC 82 ms
17,920 KB
testcase_11 AC 179 ms
29,568 KB
testcase_12 AC 176 ms
30,208 KB
testcase_13 AC 87 ms
19,328 KB
testcase_14 AC 24 ms
8,320 KB
testcase_15 AC 204 ms
33,408 KB
testcase_16 AC 144 ms
17,664 KB
testcase_17 AC 179 ms
17,536 KB
testcase_18 AC 176 ms
17,408 KB
testcase_19 AC 186 ms
31,872 KB
testcase_20 AC 311 ms
43,520 KB
testcase_21 AC 186 ms
31,488 KB
testcase_22 AC 3 ms
6,944 KB
testcase_23 AC 3 ms
6,944 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 3 ms
6,940 KB
testcase_27 AC 3 ms
6,944 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 3 ms
6,944 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 4 ms
6,940 KB
testcase_33 AC 3 ms
6,944 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 170 ms
14,336 KB
testcase_36 AC 141 ms
14,464 KB
testcase_37 AC 454 ms
52,480 KB
testcase_38 AC 169 ms
14,464 KB
testcase_39 AC 2 ms
6,940 KB
testcase_40 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

template<typename T> inline T gcd(T a, T b) {
  return __gcd(a, b);
}

template<typename T> inline T lcm(T a, T b) {
  return a / gcd(a, b) * b;
}

template<typename T> inline T floor(T a, T b) {
  return floor(a / b) * b <= a ? floor(a / b) : floor(a / b) - 1;
}

template<typename T> inline T ceil(T a, T b) {
  return floor(a + b - 1, b);
}

template<typename T> inline T round(T a, T b) {
  return floor(a + b / 2);
}

template<typename T> inline T mod(T a, T b) {
  return a - floor(a, b) * b;
}

template<typename T> inline T factorial(T n) {
  return n <= 1 ? 1 : factorial(n - 1) * n;
}

int main() {
  int n;
  cin >> n;
  map<pair<int, int>, vector<pair<int, int>>> c;
  int res = 0;
  for (int i = 0; i < n; ++i) {
    int x, y;
    cin >> x >> y;
    int a = floor(x, 20), b = floor(y, 20);
    bool ok = true;
    for (int i = a - 1; i <= a + 1; ++i) {
      for (int j = b - 1; j <= b + 1; ++j) {
        for (auto k : c[make_pair(i, j)]) {
          if (pow(x - k.first, 2) + pow(y - k.second, 2) < 400) ok = false;
        }
      }
    }
    if (ok) {
      c[make_pair(a, b)].emplace_back(make_pair(x, y));
      ++res;
    }
  }
  cout << res << endl;
}
0