結果

問題 No.2374 ASKT Subsequences
ユーザー hibit_athibit_at
提出日時 2023-06-16 20:53:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,657 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 98,400 KB
最終ジャッジ日時 2024-06-29 22:37:20
合計ジャッジ時間 16,290 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
67,848 KB
testcase_01 AC 60 ms
68,804 KB
testcase_02 AC 54 ms
67,080 KB
testcase_03 AC 59 ms
71,644 KB
testcase_04 AC 81 ms
76,404 KB
testcase_05 AC 61 ms
68,672 KB
testcase_06 AC 62 ms
71,744 KB
testcase_07 AC 99 ms
76,656 KB
testcase_08 AC 88 ms
76,880 KB
testcase_09 AC 92 ms
76,520 KB
testcase_10 AC 115 ms
77,200 KB
testcase_11 AC 235 ms
76,856 KB
testcase_12 AC 161 ms
76,696 KB
testcase_13 AC 151 ms
76,572 KB
testcase_14 AC 306 ms
77,048 KB
testcase_15 AC 373 ms
77,920 KB
testcase_16 AC 257 ms
76,956 KB
testcase_17 AC 465 ms
77,848 KB
testcase_18 AC 740 ms
79,040 KB
testcase_19 AC 706 ms
78,508 KB
testcase_20 AC 900 ms
81,808 KB
testcase_21 AC 1,023 ms
82,760 KB
testcase_22 AC 861 ms
81,152 KB
testcase_23 AC 733 ms
78,740 KB
testcase_24 AC 723 ms
78,364 KB
testcase_25 AC 459 ms
76,452 KB
testcase_26 AC 1,480 ms
85,836 KB
testcase_27 AC 812 ms
76,848 KB
testcase_28 AC 1,079 ms
77,204 KB
testcase_29 AC 1,657 ms
98,400 KB
testcase_30 AC 1,113 ms
79,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n = int(input())
a = list(map(int, input().split(' ')))

ans = 0

for d in range(1, 2000):
    mp = defaultdict(int)
    for i in range(n):
        mp[(a[i], 0)] += 1
        if (a[i] - 10 - d, 0) in mp:
            mp[(a[i], 1)] += mp[(a[i] - 10 - d, 0)]
        if (a[i] + d, 1) in mp:
            mp[(a[i], 2)] += mp[(a[i] + d, 1)]
        if (a[i] - d - 1, 2) in mp:
            ans += mp[(a[i] - d - 1, 2)]
print(ans)
0