結果

問題 No.2517 Right Triangles on Circle
ユーザー take000take000
提出日時 2023-10-27 23:04:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 573 bytes
コンパイル時間 2,292 ms
コンパイル使用メモリ 206,600 KB
実行使用メモリ 18,560 KB
最終ジャッジ日時 2024-09-25 15:03:36
合計ジャッジ時間 6,790 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 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 WA -
testcase_14 AC 318 ms
18,432 KB
testcase_15 WA -
testcase_16 AC 204 ms
18,432 KB
testcase_17 AC 230 ms
15,744 KB
testcase_18 AC 204 ms
14,720 KB
testcase_19 AC 176 ms
13,440 KB
testcase_20 AC 173 ms
13,824 KB
testcase_21 AC 313 ms
18,176 KB
testcase_22 AC 47 ms
7,296 KB
testcase_23 AC 186 ms
14,208 KB
testcase_24 WA -
testcase_25 AC 41 ms
6,792 KB
testcase_26 AC 241 ms
16,128 KB
testcase_27 AC 48 ms
7,040 KB
testcase_28 AC 25 ms
5,632 KB
testcase_29 AC 62 ms
8,192 KB
testcase_30 AC 35 ms
6,400 KB
testcase_31 AC 189 ms
14,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < n; ++i)
typedef long long ll;
using namespace std;

int main() {
    cin.tie(0)->sync_with_stdio(0);

    int N, M;
    cin >> N >> M;
    vector<int> A(N);
    rep(i, N) cin >> A[i], A[i] *= 2;

    ll ans = 0, cnt = 0;
    set<int> st;
    rep(i, N) {
        st.insert(A[i]);

        int rev = (A[i] + M) % (2 * M);
        if (st.find(rev) != st.end()) {
            ans += i - 1 + cnt;
            cnt++;
        } else {
            ans += cnt;
        }
    }
    cout << ans << "\n";

    return 0;
}
0