結果

問題 No.2355 Unhappy Back Dance
ユーザー shobonvipshobonvip
提出日時 2023-06-16 22:53:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,043 ms / 6,000 ms
コード長 723 bytes
コンパイル時間 4,479 ms
コンパイル使用メモリ 271,176 KB
実行使用メモリ 144,128 KB
最終ジャッジ日時 2024-06-24 15:52:07
合計ジャッジ時間 28,283 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 208 ms
38,784 KB
testcase_11 AC 206 ms
38,656 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 199 ms
38,784 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2,003 ms
144,128 KB
testcase_17 AC 2,021 ms
144,128 KB
testcase_18 AC 2,015 ms
144,000 KB
testcase_19 AC 2,043 ms
144,128 KB
testcase_20 AC 2,018 ms
144,000 KB
testcase_21 AC 806 ms
62,208 KB
testcase_22 AC 146 ms
14,336 KB
testcase_23 AC 156 ms
15,232 KB
testcase_24 AC 1,807 ms
130,432 KB
testcase_25 AC 971 ms
71,808 KB
testcase_26 AC 970 ms
71,936 KB
testcase_27 AC 806 ms
63,232 KB
testcase_28 AC 18 ms
6,944 KB
testcase_29 AC 43 ms
6,944 KB
testcase_30 AC 1,662 ms
120,960 KB
testcase_31 AC 1,211 ms
89,088 KB
testcase_32 AC 113 ms
11,776 KB
testcase_33 AC 663 ms
52,096 KB
testcase_34 AC 8 ms
6,944 KB
testcase_35 AC 20 ms
6,944 KB
testcase_36 AC 816 ms
63,232 KB
testcase_37 AC 431 ms
35,328 KB
testcase_38 AC 530 ms
42,624 KB
testcase_39 AC 416 ms
34,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;

typedef modint998244353 mint;
typedef long long ll;

int main(){
	int n; cin >> n;
	vector<ll> x(n), y(n);
	for (int i=0; i<n; i++){
		cin >> x[i] >> y[i];
	}
	vector<set<pair<ll,ll>>> r;
	r.resize(n);
	vector<bool> mode(n);
	for (int i=0; i<n; i++){
		for (int j=0; j<n; j++){
			if (i == j) continue;
			ll xx = x[i] - x[j];
			ll yy = y[i] - y[j];
			ll g = __gcd(abs(xx), abs(yy));
			xx /= g;
			yy /= g;
			if (r[i].find(pair(xx, yy)) == r[i].end()){
				r[i].insert(pair(xx,yy));
			}else{
				mode[i] = true;
				break;
			}
		}
	}
	int ans = 0;
	for (int i=0; i<n; i++){
		if (mode[i]) ans++;
	}
	cout << ans << endl;	
}
0