結果

問題 No.2355 Unhappy Back Dance
ユーザー hiro71687khiro71687k
提出日時 2023-06-16 22:16:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,869 ms / 6,000 ms
コード長 931 bytes
コンパイル時間 2,355 ms
コンパイル使用メモリ 212,168 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-24 14:48:05
合計ジャッジ時間 24,071 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 149 ms
6,944 KB
testcase_11 AC 152 ms
6,944 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 160 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 1,840 ms
6,940 KB
testcase_17 AC 1,846 ms
6,944 KB
testcase_18 AC 1,842 ms
6,940 KB
testcase_19 AC 1,869 ms
6,940 KB
testcase_20 AC 1,843 ms
6,940 KB
testcase_21 AC 759 ms
6,944 KB
testcase_22 AC 137 ms
6,940 KB
testcase_23 AC 148 ms
6,944 KB
testcase_24 AC 1,659 ms
6,940 KB
testcase_25 AC 885 ms
6,940 KB
testcase_26 AC 889 ms
6,940 KB
testcase_27 AC 763 ms
6,944 KB
testcase_28 AC 17 ms
6,944 KB
testcase_29 AC 41 ms
6,944 KB
testcase_30 AC 1,518 ms
6,940 KB
testcase_31 AC 1,103 ms
6,940 KB
testcase_32 AC 106 ms
6,944 KB
testcase_33 AC 622 ms
6,940 KB
testcase_34 AC 7 ms
6,944 KB
testcase_35 AC 19 ms
6,944 KB
testcase_36 AC 767 ms
6,940 KB
testcase_37 AC 405 ms
6,940 KB
testcase_38 AC 501 ms
6,940 KB
testcase_39 AC 393 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll inf=200000000000000;
ll mod=998244353;
ll gcd(ll a, ll b) {
	a = abs(a); b = abs(b);
	if (a < b)swap(a, b);
	while (b) {
	    ll r=a%b;
        a=b;
	    b=r;
	}
	return a;
}
int main(){
    ll n;
    cin >> n;
    vector<ll>x(n),y(n);
    for (ll i = 0; i < n; i++)
    {
        cin >> x[i] >> y[i];
    }
    ll ans=0;
    for (ll i = 0; i < n; i++)
    {
        map<pair<ll,ll>,ll>memo;
        for (ll j = 0; j < n; j++)
        {
            if (i==j)
            {
                continue;
            }
            ll xx=(x[i]-x[j]),yy=y[i]-y[j];
            ll z=gcd(abs(xx),abs(yy));
            xx/=z;
            yy/=z;
            memo[{xx,yy}]+=1;
            if (memo[{xx,yy}]>=2)
            {
                ans++;
                break;
            }
        }
    }
    cout << ans << endl;
}
0