結果

問題 No.2374 ASKT Subsequences
ユーザー NPNP
提出日時 2023-07-07 22:14:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 909 bytes
コンパイル時間 965 ms
コンパイル使用メモリ 74,496 KB
実行使用メモリ 10,140 KB
最終ジャッジ日時 2024-07-21 18:18:14
合計ジャッジ時間 5,296 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,012 KB
testcase_01 AC 2 ms
6,948 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 6 ms
6,940 KB
testcase_15 AC 11 ms
6,940 KB
testcase_16 AC 4 ms
6,944 KB
testcase_17 AC 17 ms
6,944 KB
testcase_18 AC 62 ms
6,940 KB
testcase_19 AC 47 ms
6,944 KB
testcase_20 AC 124 ms
6,944 KB
testcase_21 AC 187 ms
6,940 KB
testcase_22 AC 95 ms
6,944 KB
testcase_23 AC 66 ms
6,940 KB
testcase_24 AC 63 ms
6,940 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

int count_asakatsu_subsequences(int N, std::vector<int>& A) {
    int cnt = 0;
    for (int i = 0; i < N - 3; i++) {
        for (int j = i + 1; j < N - 2; j++) {
            int k = A[j] - A[i] - 10;
            if (k > 0) {
                for (int m = j + 1; m < N - 1; m++) {
                    if (A[m] == A[j] - k) {
                        for (int n = m + 1; n < N; n++) {
                            if (A[n] == A[m] + k + 1) {
                                cnt += 1;
                            }
                        }
                    }
                }
            }
        }
    }
    return cnt;
}

int main() {
    int N;
    std::cin >> N;
    std::vector<int> A(N);
    for (int i = 0; i < N; i++) {
        std::cin >> A[i];
    }
    int result = count_asakatsu_subsequences(N, A);
    std::cout << result << std::endl;

    return 0;
}


0