結果

問題 No.2517 Right Triangles on Circle
ユーザー baluteshihbaluteshih
提出日時 2023-10-27 21:31:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 710 bytes
コンパイル時間 2,082 ms
コンパイル使用メモリ 205,688 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-09-25 13:34:47
合計ジャッジ時間 5,985 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
6,940 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
6,940 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 182 ms
18,560 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 38 ms
7,680 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 32 ms
6,940 KB
testcase_26 WA -
testcase_27 AC 35 ms
7,424 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

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) % m;
        if (tar > arr[i] && vis.find(tar) != vis.end())
            ans += n - 2;
    }
    cout << ans << "\n";
}
0