結果

問題 No.2374 ASKT Subsequences
ユーザー 👑 rin204rin204
提出日時 2023-07-07 21:35:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 158,976 KB
最終ジャッジ日時 2024-07-21 17:19:31
合計ジャッジ時間 3,498 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,820 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 37 ms
52,268 KB
testcase_05 AC 36 ms
51,840 KB
testcase_06 AC 35 ms
51,840 KB
testcase_07 AC 36 ms
52,224 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 37 ms
51,584 KB
testcase_10 AC 49 ms
61,696 KB
testcase_11 AC 55 ms
66,172 KB
testcase_12 AC 44 ms
60,800 KB
testcase_13 AC 45 ms
61,440 KB
testcase_14 AC 59 ms
67,584 KB
testcase_15 AC 62 ms
69,120 KB
testcase_16 AC 53 ms
65,536 KB
testcase_17 AC 63 ms
72,576 KB
testcase_18 AC 102 ms
91,776 KB
testcase_19 AC 94 ms
89,600 KB
testcase_20 AC 151 ms
111,232 KB
testcase_21 AC 170 ms
113,536 KB
testcase_22 AC 121 ms
91,240 KB
testcase_23 AC 99 ms
92,020 KB
testcase_24 AC 104 ms
91,904 KB
testcase_25 AC 53 ms
62,592 KB
testcase_26 AC 270 ms
135,168 KB
testcase_27 AC 64 ms
65,280 KB
testcase_28 AC 112 ms
71,552 KB
testcase_29 AC 142 ms
158,976 KB
testcase_30 AC 94 ms
90,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))

L = []
R = []
l = {}
for a in A:
    L.append(l.copy())
    l[a] = l.get(a, 0) + 1

r = {}
for a in A[::-1]:
    R.append(r.copy())
    r[a] = r.get(a, 0) + 1

R = R[::-1]
ans = 0
for l in range(n):
    for r in range(l + 1, n):
        if A[r] >= A[l]:
            continue
        ans += L[l].get(A[r] - 10, 0) * R[r].get(A[l] + 1, 0)
print(ans)
0