結果

問題 No.2517 Right Triangles on Circle
ユーザー yumekawayuiyumekawayui
提出日時 2023-10-27 21:58:39
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,007 bytes
コンパイル時間 4,956 ms
コンパイル使用メモリ 189,184 KB
実行使用メモリ 813,676 KB
最終ジャッジ日時 2024-09-25 14:06:00
合計ジャッジ時間 10,394 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 44 ms
10,172 KB
testcase_14 AC 46 ms
10,124 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 60 ms
30,756 KB
testcase_18 AC 57 ms
32,908 KB
testcase_19 AC 47 ms
26,164 KB
testcase_20 AC 52 ms
35,872 KB
testcase_21 AC 82 ms
51,200 KB
testcase_22 RE -
testcase_23 MLE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 MLE -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <bits/extc++.h>
using namespace std;
using ld = long double; 
const vector<int> dx = {0, 0, 1, -1};
const vector<int> dy = {1, -1, 0, 0};
#define vec vector
#define int long long
#define double long double
//cout<<setprecision(10)<<fixed<<..
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define repp(i, x, n) for (int i = x; i < (int)(n); i++)
#define pii pair<int,int>
#define pq priority_queue

signed main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    int n;cin>>n;
    int m;cin>>m;
    vec<int> cnt(m*2+1,0);
    vec<int> A(n);rep(i,n){cin>>A[i];cnt[A[i]*2]++;}
    int ans=0;

    for(int i=1;i<=m/2;i++){
        if(i>m/2.0){
            int v=2*i;
            int op=v-m;
            ans+=cnt[v]*cnt[op]*(n-cnt[v]-cnt[op]);
        }else{
            int v=2*i;
            int op=v+m;
            ans+=cnt[v]*cnt[op]*(n-cnt[v]-cnt[op]);
        }
    }
    cout<<ans;

}
0