結果

問題 No.2374 ASKT Subsequences
ユーザー hibit_athibit_at
提出日時 2023-06-16 17:59:35
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 441 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 216,700 KB
最終ジャッジ日時 2024-06-29 22:35:39
合計ジャッジ時間 24,856 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
77,216 KB
testcase_01 AC 99 ms
77,236 KB
testcase_02 AC 85 ms
76,600 KB
testcase_03 AC 88 ms
76,696 KB
testcase_04 AC 112 ms
77,584 KB
testcase_05 AC 93 ms
77,080 KB
testcase_06 AC 86 ms
76,844 KB
testcase_07 AC 171 ms
78,212 KB
testcase_08 AC 141 ms
77,852 KB
testcase_09 AC 166 ms
77,740 KB
testcase_10 AC 257 ms
79,032 KB
testcase_11 AC 510 ms
84,408 KB
testcase_12 AC 366 ms
80,932 KB
testcase_13 AC 370 ms
82,296 KB
testcase_14 AC 673 ms
87,880 KB
testcase_15 AC 813 ms
92,308 KB
testcase_16 AC 601 ms
86,672 KB
testcase_17 AC 1,085 ms
102,572 KB
testcase_18 AC 1,421 ms
120,352 KB
testcase_19 AC 1,397 ms
115,896 KB
testcase_20 WA -
testcase_21 TLE -
testcase_22 WA -
testcase_23 AC 1,434 ms
121,068 KB
testcase_24 AC 1,412 ms
119,624 KB
testcase_25 AC 836 ms
84,696 KB
testcase_26 TLE -
testcase_27 AC 1,566 ms
107,984 KB
testcase_28 AC 1,628 ms
108,236 KB
testcase_29 TLE -
testcase_30 AC 1,746 ms
147,168 KB
権限があれば一括ダウンロードができます

ソースコード

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):
        mp[(a[i], 0)] += 1
        mp[(a[i], 1)] += mp[(a[i] - 10 - d, 0)]
        mp[(a[i], 2)] += mp[(a[i] + d, 1)]
        ans += mp[(a[i] - d - 1, 2)]
        mp[(a[i], 3)] += mp[(a[i] - d - 1, 2)]
print(ans)
0