結果
問題 | No.2769 Number of Rhombi |
ユーザー | たたき@競プロ |
提出日時 | 2024-06-08 09:33:37 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 950 bytes |
コンパイル時間 | 4,859 ms |
コンパイル使用メモリ | 317,216 KB |
実行使用メモリ | 81,536 KB |
最終ジャッジ日時 | 2024-06-08 09:34:24 |
合計ジャッジ時間 | 34,361 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 613 ms
57,088 KB |
testcase_04 | AC | 516 ms
49,792 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 1,051 ms
81,536 KB |
testcase_23 | AC | 1,040 ms
81,536 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 1,033 ms
81,536 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
ソースコード
#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; 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; ans+=m[{{dx,dy},{a+c,b+d}}]; } ans/=2; cout<<ans; }