結果

問題 No.2769 Number of Rhombi
ユーザー たたき@競プロたたき@競プロ
提出日時 2024-06-08 10:07:15
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,513 ms / 5,000 ms
コード長 994 bytes
コンパイル時間 5,595 ms
コンパイル使用メモリ 318,816 KB
実行使用メモリ 81,664 KB
最終ジャッジ日時 2024-06-08 10:08:05
合計ジャッジ時間 40,493 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 637 ms
57,088 KB
testcase_04 AC 591 ms
49,920 KB
testcase_05 AC 470 ms
34,944 KB
testcase_06 AC 656 ms
43,648 KB
testcase_07 AC 847 ms
53,248 KB
testcase_08 AC 906 ms
55,808 KB
testcase_09 AC 1,005 ms
60,672 KB
testcase_10 AC 1,025 ms
67,200 KB
testcase_11 AC 1,068 ms
72,576 KB
testcase_12 AC 1,196 ms
76,544 KB
testcase_13 AC 1,193 ms
79,232 KB
testcase_14 AC 1,184 ms
80,896 KB
testcase_15 AC 1,191 ms
81,280 KB
testcase_16 AC 1,186 ms
81,280 KB
testcase_17 AC 1,220 ms
81,408 KB
testcase_18 AC 1,202 ms
81,536 KB
testcase_19 AC 1,175 ms
81,536 KB
testcase_20 AC 1,199 ms
81,536 KB
testcase_21 AC 1,204 ms
81,664 KB
testcase_22 AC 1,201 ms
81,664 KB
testcase_23 AC 1,183 ms
81,536 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 1,186 ms
79,104 KB
testcase_26 AC 1,169 ms
80,384 KB
testcase_27 AC 1,223 ms
81,408 KB
testcase_28 AC 1,237 ms
81,280 KB
testcase_29 AC 1,484 ms
81,536 KB
testcase_30 AC 1,513 ms
81,408 KB
testcase_31 AC 1,129 ms
76,544 KB
testcase_32 AC 928 ms
56,064 KB
testcase_33 AC 856 ms
56,064 KB
testcase_34 AC 1,036 ms
65,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint998244353; //1000000007;
using ll=long long;
using pp=pair<ll,ll>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
  int n;cin>>n;
  vc<pp>v(n); rep(i,n)cin>>v[i].fi>>v[i].se;
  map<pair<pp,pp>,int>m;
  rep(i,n)rep(j,i){
    auto [a,b]=v[i]; 
    auto [c,d]=v[j];
    ll dx=a-c,dy=b-d;
    if(dx<0)dx=-dx,dy=-dy;
    ll g=gcd(dx,dy);
   
    dx/=g,dy/=g;
     if(dx==0)dy=1;
    m[{{dx,dy},{a+c,b+d}}]++;
  }
  ll ans=0;
  rep(i,n)rep(j,i){
    auto [a,b]=v[i]; 
    auto [c,d]=v[j];
    ll dx=a-c,dy=b-d;
    swap(dx,dy);
    dx=-dx;
    if(dx<0)dx=-dx,dy=-dy;
    ll g=gcd(dx,dy);
    dx/=g,dy/=g;
     if(dx==0)dy=1;
    ans+=m[{{dx,dy},{a+c,b+d}}];
  }
  ans/=2;
  cout<<ans;
}
    
0