結果

問題 No.202 1円玉投げ
ユーザー agatanagatan
提出日時 2015-05-04 14:10:14
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 864 bytes
コンパイル時間 1,334 ms
コンパイル使用メモリ 74,028 KB
実行使用メモリ 18,096 KB
最終ジャッジ日時 2024-12-22 08:19:16
合計ジャッジ時間 103,200 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 2 ms
9,568 KB
testcase_03 AC 2 ms
9,568 KB
testcase_04 AC 2 ms
10,624 KB
testcase_05 AC 44 ms
9,444 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 2,951 ms
9,568 KB
testcase_10 AC 543 ms
9,576 KB
testcase_11 AC 1,992 ms
9,576 KB
testcase_12 AC 2,112 ms
9,576 KB
testcase_13 AC 660 ms
5,248 KB
testcase_14 AC 61 ms
5,248 KB
testcase_15 AC 2,704 ms
5,248 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 2,378 ms
6,816 KB
testcase_20 TLE -
testcase_21 AC 2,336 ms
6,820 KB
testcase_22 AC 3 ms
6,820 KB
testcase_23 AC 3 ms
6,816 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 3 ms
6,816 KB
testcase_27 AC 3 ms
6,816 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 3 ms
6,816 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 4 ms
6,820 KB
testcase_33 AC 3 ms
6,820 KB
testcase_34 AC 3 ms
6,816 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 2 ms
6,820 KB
testcase_40 AC 2 ms
11,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <functional>
#include <algorithm>
#include <cmath>

#define REP(i,n) for(int i=0;i<(n);i++)

using namespace std;

bool is_on(pair<int,int> &a, pair<int, int> &b)
{
    double dist = (a.first - b.first) * (a.first - b.first) + (a.second - b.second) * (a.second - b.second);
    dist = sqrt(dist);
    return dist < 20;
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);

    int N;
    cin >> N;
    int x, y;
    cin >> x >> y;
    N--;
    vector<pair<int, int> > coins;
    coins.emplace_back(x, y);

    REP(i, N) {
        cin >> x >> y;
        auto p = pair<int,int>(x, y);
        if (!any_of(coins.begin(), coins.end(), [&p](pair<int, int> &a) { return is_on(a, p); })) {
            coins.push_back(move(p));
        }
    }
    cout << coins.size() << endl;

    return 0;
}
0