結果

問題 No.2355 Unhappy Back Dance
ユーザー SSRSSSRS
提出日時 2023-06-16 21:46:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 976 ms / 6,000 ms
コード長 597 bytes
コンパイル時間 2,246 ms
コンパイル使用メモリ 210,544 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-24 13:40:47
合計ジャッジ時間 14,990 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 59 ms
5,376 KB
testcase_07 AC 63 ms
5,376 KB
testcase_08 AC 68 ms
5,376 KB
testcase_09 AC 67 ms
5,376 KB
testcase_10 AC 234 ms
5,376 KB
testcase_11 AC 234 ms
5,376 KB
testcase_12 AC 67 ms
5,376 KB
testcase_13 AC 69 ms
5,376 KB
testcase_14 AC 253 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 974 ms
5,376 KB
testcase_17 AC 971 ms
5,376 KB
testcase_18 AC 970 ms
5,376 KB
testcase_19 AC 976 ms
5,376 KB
testcase_20 AC 974 ms
5,376 KB
testcase_21 AC 400 ms
5,376 KB
testcase_22 AC 70 ms
5,376 KB
testcase_23 AC 80 ms
5,376 KB
testcase_24 AC 885 ms
5,376 KB
testcase_25 AC 471 ms
5,376 KB
testcase_26 AC 469 ms
5,376 KB
testcase_27 AC 411 ms
5,376 KB
testcase_28 AC 10 ms
5,376 KB
testcase_29 AC 23 ms
5,376 KB
testcase_30 AC 814 ms
5,376 KB
testcase_31 AC 584 ms
5,376 KB
testcase_32 AC 55 ms
5,376 KB
testcase_33 AC 329 ms
5,376 KB
testcase_34 AC 4 ms
5,376 KB
testcase_35 AC 11 ms
5,376 KB
testcase_36 AC 410 ms
5,376 KB
testcase_37 AC 215 ms
5,376 KB
testcase_38 AC 264 ms
5,376 KB
testcase_39 AC 209 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N;
  cin >> N;
  vector<long long> X(N), Y(N);
  for (int i = 0; i < N; i++){
    cin >> X[i] >> Y[i];
  }
  int ans = 0;
  for (int i = 0; i < N; i++){
    map<pair<long long, long long>, int> mp;
    for (int j = 0; j < N; j++){
      if (j != i){
        long long dx = X[j] - X[i];
        long long dy = Y[j] - Y[i];
        long long g = gcd(dx, dy);
        mp[make_pair(dx / g, dy / g)]++;
      }
    }
    for (auto P : mp){
      if (P.second >= 2){
        ans++;
        break;
      }
    }
  }
  cout << ans << endl;
}
0