結果

問題 No.2374 ASKT Subsequences
ユーザー hibit_athibit_at
提出日時 2023-06-16 22:47:42
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 518 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 83,692 KB
最終ジャッジ日時 2024-06-29 22:37:48
合計ジャッジ時間 6,774 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
60,952 KB
testcase_01 AC 41 ms
54,540 KB
testcase_02 AC 41 ms
54,680 KB
testcase_03 AC 41 ms
53,676 KB
testcase_04 AC 41 ms
54,376 KB
testcase_05 AC 40 ms
53,852 KB
testcase_06 AC 40 ms
54,116 KB
testcase_07 AC 46 ms
62,752 KB
testcase_08 AC 41 ms
53,704 KB
testcase_09 AC 41 ms
54,480 KB
testcase_10 AC 52 ms
64,304 KB
testcase_11 AC 66 ms
72,152 KB
testcase_12 AC 55 ms
66,632 KB
testcase_13 AC 52 ms
64,368 KB
testcase_14 AC 72 ms
76,420 KB
testcase_15 AC 77 ms
76,368 KB
testcase_16 AC 64 ms
73,264 KB
testcase_17 AC 87 ms
76,388 KB
testcase_18 AC 107 ms
76,456 KB
testcase_19 AC 99 ms
76,396 KB
testcase_20 AC 151 ms
76,816 KB
testcase_21 AC 175 ms
77,132 KB
testcase_22 AC 134 ms
76,660 KB
testcase_23 AC 112 ms
76,268 KB
testcase_24 AC 107 ms
76,928 KB
testcase_25 AC 85 ms
76,344 KB
testcase_26 AC 245 ms
77,696 KB
testcase_27 AC 153 ms
76,492 KB
testcase_28 AC 153 ms
76,356 KB
testcase_29 AC 225 ms
78,008 KB
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n = int(input())
a = list(map(int, input().split(' ')))
m = max(a)
ans = 0
for i in range(n):
    buf = [0] * (m+2)
    left_buf = defaultdict(int)
    for j in range(i, n):
        buf[a[j]] += 1
    for j in range(i, n):
        if a[j] == a[i] + 10:
            for key, val in left_buf.items():
                estimate = key - a[i] - 10
                if estimate > 0:
                    ans += val * buf[key+1]
        buf[a[j]] -= 1
        left_buf[a[j]] += 1
print(ans)
0