結果

問題 No.2517 Right Triangles on Circle
ユーザー baluteshihbaluteshih
提出日時 2023-10-27 21:35:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 706 bytes
コンパイル時間 2,122 ms
コンパイル使用メモリ 205,624 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-09-25 13:40:23
合計ジャッジ時間 6,422 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 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,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 296 ms
18,560 KB
testcase_14 AC 220 ms
18,816 KB
testcase_15 AC 283 ms
18,560 KB
testcase_16 AC 229 ms
18,688 KB
testcase_17 AC 218 ms
16,000 KB
testcase_18 AC 206 ms
14,976 KB
testcase_19 AC 166 ms
13,696 KB
testcase_20 AC 178 ms
13,824 KB
testcase_21 AC 320 ms
18,560 KB
testcase_22 AC 38 ms
7,680 KB
testcase_23 AC 191 ms
14,464 KB
testcase_24 AC 67 ms
8,576 KB
testcase_25 AC 32 ms
7,040 KB
testcase_26 AC 237 ms
16,256 KB
testcase_27 AC 36 ms
7,296 KB
testcase_28 AC 23 ms
6,944 KB
testcase_29 AC 61 ms
8,320 KB
testcase_30 AC 33 ms
6,944 KB
testcase_31 AC 191 ms
14,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
#define X first
#define Y second
#define SZ(a) ((int)a.size())
#define ALL(v) v.begin(), v.end()
#define pb push_back

int arr[300005];

int main() {
    ios::sync_with_stdio(0), cin.tie(0);
    set<int> vis;
    int n, m;
    ll ans = 0;
    cin >> n >> m;
    for (int i = 1; i <= n; ++i)
        cin >> arr[i], arr[i] %= m, vis.insert(arr[i]);
    if (m & 1)
        return cout << "0\n", 0;
    for (int i = 1; i <= n; ++i) {
        int tar = (m / 2 + arr[i]) % m;
        if (tar > arr[i] && vis.find(tar) != vis.end())
            ans += n - 2;
    }
    cout << ans << "\n";
}
0