結果

問題 No.2517 Right Triangles on Circle
ユーザー umezoumezo
提出日時 2023-10-27 22:36:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 2,384 ms
コンパイル使用メモリ 211,496 KB
実行使用メモリ 18,432 KB
最終ジャッジ日時 2024-09-25 14:38:55
合計ジャッジ時間 6,494 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 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,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 236 ms
18,432 KB
testcase_14 AC 219 ms
18,432 KB
testcase_15 AC 238 ms
18,432 KB
testcase_16 AC 223 ms
18,432 KB
testcase_17 AC 180 ms
15,744 KB
testcase_18 AC 162 ms
14,720 KB
testcase_19 AC 133 ms
13,440 KB
testcase_20 AC 138 ms
13,568 KB
testcase_21 AC 228 ms
18,304 KB
testcase_22 AC 42 ms
7,424 KB
testcase_23 AC 151 ms
14,208 KB
testcase_24 AC 68 ms
8,320 KB
testcase_25 AC 35 ms
6,944 KB
testcase_26 AC 192 ms
16,128 KB
testcase_27 AC 39 ms
7,168 KB
testcase_28 AC 23 ms
6,944 KB
testcase_29 AC 56 ms
8,064 KB
testcase_30 AC 32 ms
6,940 KB
testcase_31 AC 151 ms
14,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  ll n,m;
  cin>>n>>m;
  vector<int> A(n);
  set<int> s;
  rep(i,n){
    cin>>A[i];
    s.insert(A[i]);
  }
  sort(ALL(A));
  
  if(m%2){
    cout<<0<<endl;
    return 0;
  }
  
  m/=2;
  ll cnt=0;
  rep(i,n-1){
    if(s.count(m+A[i])) cnt++;
  }
  cout<<cnt*(n-2)<<endl;
    
  return 0;
}
0