結果

問題 No.2517 Right Triangles on Circle
ユーザー MasKoaTSMasKoaTS
提出日時 2023-08-26 17:01:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 534 bytes
コンパイル時間 2,447 ms
コンパイル使用メモリ 204,524 KB
実行使用メモリ 15,392 KB
最終ジャッジ日時 2024-06-07 12:35:50
合計ジャッジ時間 6,843 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 156 ms
15,388 KB
testcase_14 AC 138 ms
15,392 KB
testcase_15 AC 212 ms
15,388 KB
testcase_16 AC 208 ms
15,392 KB
testcase_17 AC 147 ms
13,600 KB
testcase_18 AC 135 ms
13,092 KB
testcase_19 AC 119 ms
12,668 KB
testcase_20 AC 120 ms
12,672 KB
testcase_21 AC 180 ms
15,264 KB
testcase_22 AC 46 ms
6,536 KB
testcase_23 AC 134 ms
12,704 KB
testcase_24 AC 63 ms
7,944 KB
testcase_25 AC 39 ms
6,152 KB
testcase_26 AC 177 ms
13,860 KB
testcase_27 AC 42 ms
6,408 KB
testcase_28 AC 27 ms
5,504 KB
testcase_29 AC 61 ms
7,940 KB
testcase_30 AC 35 ms
5,896 KB
testcase_31 AC 137 ms
12,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    int n, m;   cin >> n >> m;
    unordered_set<int> a = {};
    for(int i = 0; i < n; ++i){
        int x;  cin >> x;
        a.insert(x);
    }

    if(m & 1){
        cout << 0 << endl;
        return 0;
    }

    ll ans = 0;
    for(auto itr = a.begin(); itr != a.end(); ++itr){
        int x = (*itr) + m / 2;
        if(a.find(x) == a.end()){
            continue;
        }
        ans += n - 2;
    }
    cout << ans << endl;

    return 0;
}
0