結果

問題 No.2374 ASKT Subsequences
ユーザー hiro71687khiro71687k
提出日時 2023-07-12 17:39:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,014 ms / 2,000 ms
コード長 689 bytes
コンパイル時間 2,302 ms
コンパイル使用メモリ 209,900 KB
実行使用メモリ 128,256 KB
最終ジャッジ日時 2024-09-14 07:06:03
合計ジャッジ時間 7,947 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 4 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 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,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 14 ms
6,944 KB
testcase_12 AC 7 ms
6,940 KB
testcase_13 AC 5 ms
6,944 KB
testcase_14 AC 24 ms
7,424 KB
testcase_15 AC 37 ms
9,088 KB
testcase_16 AC 18 ms
6,944 KB
testcase_17 AC 75 ms
15,360 KB
testcase_18 AC 186 ms
26,240 KB
testcase_19 AC 161 ms
23,936 KB
testcase_20 AC 403 ms
53,760 KB
testcase_21 AC 530 ms
64,256 KB
testcase_22 AC 331 ms
45,952 KB
testcase_23 AC 188 ms
25,600 KB
testcase_24 AC 186 ms
25,984 KB
testcase_25 AC 7 ms
6,940 KB
testcase_26 AC 973 ms
91,008 KB
testcase_27 AC 22 ms
6,944 KB
testcase_28 AC 119 ms
6,948 KB
testcase_29 AC 1,014 ms
128,256 KB
testcase_30 AC 172 ms
17,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll mod=998244353;
ld inf=10000999999999900;
int main(){
    ll n;
    cin >> n;
    vector<ll>a(n);
    for (ll i = 0; i < n; i++)
    {
        cin >> a[i];
    }
    map<pair<ll,ll>,ll>memo;
    ll ans=0;
    for (ll i = n-2; i >=0; i--)
    {
        for (ll j = i-1; j >=0; j--)
        {
            ll k=a[i]-a[j]-10;
            if (k<=0)
            {
                continue;
            }
            ans+=memo[{a[i]-k,a[i]-k+k+1}];
        }
        for (ll j = i+1; j <n; j++)
        {
            memo[{a[i],a[j]}]++;
        }
    }
    cout << ans << endl;
}
0