結果

問題 No.202 1円玉投げ
ユーザー not_522not_522
提出日時 2015-08-17 12:23:25
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 603 ms / 5,000 ms
コード長 1,221 bytes
コンパイル時間 1,714 ms
コンパイル使用メモリ 169,484 KB
実行使用メモリ 58,624 KB
最終ジャッジ日時 2024-12-22 09:53:45
合計ジャッジ時間 9,963 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 224 ms
14,464 KB
testcase_01 AC 496 ms
58,624 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 27 ms
7,552 KB
testcase_06 AC 481 ms
46,720 KB
testcase_07 AC 545 ms
50,048 KB
testcase_08 AC 553 ms
50,432 KB
testcase_09 AC 304 ms
34,048 KB
testcase_10 AC 123 ms
17,920 KB
testcase_11 AC 241 ms
29,568 KB
testcase_12 AC 252 ms
30,208 KB
testcase_13 AC 125 ms
19,328 KB
testcase_14 AC 30 ms
8,320 KB
testcase_15 AC 290 ms
33,280 KB
testcase_16 AC 168 ms
17,408 KB
testcase_17 AC 208 ms
17,536 KB
testcase_18 AC 211 ms
17,536 KB
testcase_19 AC 273 ms
31,872 KB
testcase_20 AC 438 ms
43,520 KB
testcase_21 AC 266 ms
31,360 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 3 ms
5,248 KB
testcase_25 AC 3 ms
5,248 KB
testcase_26 AC 3 ms
5,248 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 3 ms
5,248 KB
testcase_30 AC 3 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 5 ms
5,248 KB
testcase_33 AC 4 ms
5,248 KB
testcase_34 AC 4 ms
5,248 KB
testcase_35 AC 197 ms
14,592 KB
testcase_36 AC 175 ms
14,336 KB
testcase_37 AC 603 ms
52,480 KB
testcase_38 AC 203 ms
14,464 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 3 ms
5,248 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