結果

問題 No.2517 Right Triangles on Circle
ユーザー GOTKAKOGOTKAKO
提出日時 2023-10-27 21:32:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 330 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 1,717 ms
コンパイル使用メモリ 176,952 KB
実行使用メモリ 31,616 KB
最終ジャッジ日時 2024-09-25 13:36:42
合計ジャッジ時間 6,472 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 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 1 ms
5,376 KB
testcase_13 AC 268 ms
24,448 KB
testcase_14 AC 178 ms
17,408 KB
testcase_15 AC 299 ms
31,616 KB
testcase_16 AC 300 ms
31,488 KB
testcase_17 AC 239 ms
25,472 KB
testcase_18 AC 209 ms
24,192 KB
testcase_19 AC 167 ms
21,760 KB
testcase_20 AC 191 ms
22,144 KB
testcase_21 AC 330 ms
30,720 KB
testcase_22 AC 38 ms
7,168 KB
testcase_23 AC 206 ms
23,680 KB
testcase_24 AC 76 ms
12,928 KB
testcase_25 AC 33 ms
6,656 KB
testcase_26 AC 263 ms
27,008 KB
testcase_27 AC 38 ms
7,040 KB
testcase_28 AC 29 ms
7,424 KB
testcase_29 AC 73 ms
12,544 KB
testcase_30 AC 41 ms
8,832 KB
testcase_31 AC 207 ms
23,424 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:17:13: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   17 |     for(auto[a,c] : A){
      |             ^

ソースコード

diff #

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

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

    int N,M; cin >> N >> M;
    map<int,int> A;
    for(int i=0; i<N; i++){
        int a; cin >> a;
        A[a] = 1;
    }
    if(M%2){cout << 0 << endl; return 0;}

    long long answer = 0;
    for(auto[a,c] : A){
        if(c == 0) continue;
        if(A[a+M/2] == 1) answer += N-2; 
    }
    cout << answer << endl;
}
0