結果

問題 No.2517 Right Triangles on Circle
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-11-29 19:19:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 1,868 ms
コンパイル使用メモリ 206,752 KB
実行使用メモリ 17,408 KB
最終ジャッジ日時 2024-09-26 13:34:40
合計ジャッジ時間 5,261 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 221 ms
17,408 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 224 ms
17,408 KB
testcase_16 AC 198 ms
17,408 KB
testcase_17 AC 163 ms
14,848 KB
testcase_18 AC 149 ms
14,080 KB
testcase_19 AC 137 ms
12,928 KB
testcase_20 AC 139 ms
13,056 KB
testcase_21 AC 242 ms
17,280 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 142 ms
13,440 KB
testcase_24 AC 56 ms
8,192 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 192 ms
15,232 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 23 ms
5,376 KB
testcase_29 AC 55 ms
8,064 KB
testcase_30 AC 31 ms
6,272 KB
testcase_31 AC 145 ms
13,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    ll N, M, A, ans=0;
    cin >> N >> M;
    set<ll> st;
    if (M % 2 == 1){
        cout << 0 << endl;
        return 0;
    }
    for (int i=0; i<N; i++){
        cin >> A;
        A %= M;
        st.insert(A);
    }

    for (auto x : st){
        if (st.count((x+M/2)%M)) ans += N-2;
    }
    cout << ans/2 << endl;

    return 0;
}
0