結果

問題 No.2374 ASKT Subsequences
ユーザー hibit_athibit_at
提出日時 2023-06-16 17:37:01
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 472 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 218,788 KB
最終ジャッジ日時 2024-06-29 22:34:21
合計ジャッジ時間 28,962 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
76,468 KB
testcase_01 AC 89 ms
76,768 KB
testcase_02 AC 83 ms
76,468 KB
testcase_03 AC 86 ms
76,888 KB
testcase_04 AC 123 ms
76,696 KB
testcase_05 AC 87 ms
76,776 KB
testcase_06 AC 94 ms
76,608 KB
testcase_07 AC 157 ms
77,064 KB
testcase_08 AC 136 ms
77,432 KB
testcase_09 AC 150 ms
76,956 KB
testcase_10 AC 217 ms
77,432 KB
testcase_11 AC 448 ms
80,136 KB
testcase_12 AC 278 ms
77,984 KB
testcase_13 AC 273 ms
78,152 KB
testcase_14 AC 537 ms
82,844 KB
testcase_15 AC 665 ms
85,540 KB
testcase_16 AC 457 ms
81,520 KB
testcase_17 AC 872 ms
94,808 KB
testcase_18 AC 1,281 ms
112,296 KB
testcase_19 AC 1,197 ms
108,140 KB
testcase_20 WA -
testcase_21 TLE -
testcase_22 WA -
testcase_23 AC 1,297 ms
111,648 KB
testcase_24 AC 1,283 ms
112,520 KB
testcase_25 AC 941 ms
84,472 KB
testcase_26 TLE -
testcase_27 AC 1,797 ms
106,936 KB
testcase_28 AC 1,942 ms
108,468 KB
testcase_29 TLE -
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

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

ans = 0

for d in range(1,1000):
    dp = [[0 for j in range(4)] for i in range(n)]
    mp = defaultdict(int)
    for i in range(n):
        dp[i][0] += 1
        dp[i][1] += mp[(a[i] - 10 - d, 0)]
        dp[i][2] += mp[(a[i] + d, 1)]
        dp[i][3] += mp[(a[i] - d - 1, 2)]
        for j in range(4):
            mp[(a[i], j)] += dp[i][j]
        ans += dp[i][3]
print(ans)
0