結果

問題 No.2355 Unhappy Back Dance
ユーザー FplusFplusFFplusFplusF
提出日時 2023-06-17 06:08:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 964 ms / 6,000 ms
コード長 907 bytes
コンパイル時間 1,973 ms
コンパイル使用メモリ 208,760 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-24 22:58:10
合計ジャッジ時間 14,557 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 64 ms
5,376 KB
testcase_07 AC 65 ms
5,376 KB
testcase_08 AC 65 ms
5,376 KB
testcase_09 AC 66 ms
5,376 KB
testcase_10 AC 250 ms
5,376 KB
testcase_11 AC 245 ms
5,376 KB
testcase_12 AC 71 ms
5,376 KB
testcase_13 AC 68 ms
5,376 KB
testcase_14 AC 262 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 943 ms
5,376 KB
testcase_17 AC 942 ms
5,376 KB
testcase_18 AC 956 ms
5,376 KB
testcase_19 AC 964 ms
5,376 KB
testcase_20 AC 942 ms
5,376 KB
testcase_21 AC 382 ms
5,376 KB
testcase_22 AC 70 ms
5,376 KB
testcase_23 AC 74 ms
5,376 KB
testcase_24 AC 839 ms
5,376 KB
testcase_25 AC 446 ms
5,376 KB
testcase_26 AC 448 ms
5,376 KB
testcase_27 AC 387 ms
5,376 KB
testcase_28 AC 10 ms
5,376 KB
testcase_29 AC 21 ms
5,376 KB
testcase_30 AC 769 ms
5,376 KB
testcase_31 AC 553 ms
5,376 KB
testcase_32 AC 53 ms
5,376 KB
testcase_33 AC 310 ms
5,376 KB
testcase_34 AC 4 ms
5,376 KB
testcase_35 AC 10 ms
5,376 KB
testcase_36 AC 384 ms
5,376 KB
testcase_37 AC 205 ms
5,376 KB
testcase_38 AC 256 ms
5,376 KB
testcase_39 AC 195 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using pll=pair<ll,ll>;
using tll=tuple<ll,ll,ll>;
using ld=long double;
const ll INF=(1ll<<60);
#define rep(i,n) for (ll i=0;i<(ll)(n);i++)
#define all(v) v.begin(),v.end()
template<class T> void chmin(T &a,T b){
    if(a>b){
        a=b;
    }
}
template<class T> void chmax(T &a,T b){
    if(a<b){
        a=b;
    }
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    ll n;
    cin >> n;
    vector<ll> x(n),y(n);
    rep(i,n) cin >> x[i] >> y[i];
    ll ans=0;
    rep(i,n){
        bool ok=false;
        set<pll> st;
        rep(j,n){
            if(i==j) continue;
            ll dx=x[i]-x[j],dy=y[i]-y[j];
            ll g=gcd(dx,dy);
            dx/=g;
            dy/=g;
            if(st.count({dx,dy})) ok=true;
            st.insert({dx,dy});
        }
        if(ok) ans++;
    }
    cout << ans << '\n';
}
0