結果

問題 No.2517 Right Triangles on Circle
ユーザー twooimp2twooimp2
提出日時 2023-10-27 21:34:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 362 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 1,751 ms
コンパイル使用メモリ 176,712 KB
実行使用メモリ 24,320 KB
最終ジャッジ日時 2024-09-25 13:39:42
合計ジャッジ時間 6,880 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 273 ms
14,976 KB
testcase_14 AC 352 ms
24,320 KB
testcase_15 AC 357 ms
24,320 KB
testcase_16 AC 362 ms
24,272 KB
testcase_17 AC 260 ms
19,328 KB
testcase_18 AC 241 ms
18,560 KB
testcase_19 AC 203 ms
16,640 KB
testcase_20 AC 215 ms
17,024 KB
testcase_21 AC 329 ms
23,168 KB
testcase_22 AC 71 ms
8,960 KB
testcase_23 AC 228 ms
18,432 KB
testcase_24 AC 95 ms
10,496 KB
testcase_25 AC 58 ms
8,064 KB
testcase_26 AC 291 ms
20,992 KB
testcase_27 AC 66 ms
8,576 KB
testcase_28 AC 35 ms
6,940 KB
testcase_29 AC 89 ms
9,984 KB
testcase_30 AC 48 ms
7,296 KB
testcase_31 AC 246 ms
18,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;

int main(){
  ll n,m;
  cin>>n>>m;
  vector<ll> a(n);
  for(ll i=0;i<n;i++){
    cin>>a[i];
    a[i]*=2;
  }
  map<ll,ll> mp;
  for(ll i=0;i<n;i++){
    mp[a[i]%m]++;
  }
  ll ans=0;
  for(auto u:mp){
    ll v=u.second;
    ans+=(v*(v-1)/2)*(n-v);
  }
  cout<<ans<<endl;
}
0