結果

問題 No.202 1円玉投げ
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2022-12-23 05:36:17
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 813 bytes
コンパイル時間 2,030 ms
コンパイル使用メモリ 146,792 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-11-18 03:56:16
合計ジャッジ時間 71,905 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4,653 ms
9,728 KB
testcase_01 AC 3,377 ms
9,600 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 130 ms
5,248 KB
testcase_06 AC 2,988 ms
8,064 KB
testcase_07 AC 3,487 ms
8,448 KB
testcase_08 AC 3,521 ms
8,448 KB
testcase_09 AC 1,690 ms
6,400 KB
testcase_10 AC 611 ms
5,248 KB
testcase_11 AC 1,356 ms
5,888 KB
testcase_12 AC 1,402 ms
6,016 KB
testcase_13 AC 676 ms
5,248 KB
testcase_14 AC 156 ms
5,248 KB
testcase_15 AC 1,650 ms
6,400 KB
testcase_16 TLE -
testcase_17 AC 4,192 ms
9,728 KB
testcase_18 AC 4,196 ms
9,600 KB
testcase_19 AC 1,535 ms
6,272 KB
testcase_20 AC 2,642 ms
7,552 KB
testcase_21 AC 1,510 ms
6,272 KB
testcase_22 AC 21 ms
5,248 KB
testcase_23 AC 31 ms
5,248 KB
testcase_24 AC 5 ms
5,248 KB
testcase_25 AC 14 ms
5,248 KB
testcase_26 AC 21 ms
5,248 KB
testcase_27 AC 21 ms
5,248 KB
testcase_28 AC 7 ms
5,248 KB
testcase_29 AC 10 ms
5,248 KB
testcase_30 AC 27 ms
5,248 KB
testcase_31 AC 5 ms
5,248 KB
testcase_32 AC 18 ms
5,248 KB
testcase_33 AC 13 ms
5,248 KB
testcase_34 AC 20 ms
5,248 KB
testcase_35 AC 4,867 ms
9,600 KB
testcase_36 AC 3,410 ms
9,600 KB
testcase_37 AC 3,826 ms
8,832 KB
testcase_38 AC 4,863 ms
9,728 KB
testcase_39 AC 5 ms
5,248 KB
testcase_40 AC 3 ms
12,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>

using namespace std;

int main(){

    vector<pair<long long, long long>> d;
    for (int i=-20; i<=20; i++){
        for (int j=-20; j<=20; j++) if (i*i+j*j<400) d.push_back({i, j});
    }

    long long N, X, Y, ans=0;
    cin >> N;
    set<pair<long long, long long>> st;

    for (int i=0; i<N; i++){
        cin >> X >> Y;
        bool f=1;
        for (auto [dx, dy] : d){
            if (st.count({X+dx, Y+dy})){
                f = 0;
                break;
            }
        }
        if (f){
            ans++;
            st.insert({X, Y});
        }
    }

    cout << ans << endl;

    return 0;
}
0