結果

問題 No.2374 ASKT Subsequences
ユーザー FromBooskaFromBooska
提出日時 2023-07-07 22:40:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 1,066 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 108,928 KB
最終ジャッジ日時 2024-07-21 18:56:13
合計ジャッジ時間 5,039 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
59,008 KB
testcase_01 AC 55 ms
59,648 KB
testcase_02 AC 48 ms
59,648 KB
testcase_03 AC 48 ms
59,776 KB
testcase_04 AC 48 ms
60,544 KB
testcase_05 AC 47 ms
59,392 KB
testcase_06 AC 49 ms
59,648 KB
testcase_07 AC 52 ms
64,640 KB
testcase_08 AC 51 ms
62,464 KB
testcase_09 AC 52 ms
63,616 KB
testcase_10 AC 71 ms
76,672 KB
testcase_11 AC 88 ms
80,384 KB
testcase_12 AC 71 ms
77,312 KB
testcase_13 AC 71 ms
77,312 KB
testcase_14 AC 91 ms
80,128 KB
testcase_15 AC 94 ms
83,200 KB
testcase_16 AC 82 ms
80,128 KB
testcase_17 AC 106 ms
86,016 KB
testcase_18 AC 129 ms
91,520 KB
testcase_19 AC 123 ms
88,832 KB
testcase_20 AC 170 ms
97,792 KB
testcase_21 AC 186 ms
100,224 KB
testcase_22 AC 150 ms
94,920 KB
testcase_23 AC 130 ms
91,904 KB
testcase_24 AC 131 ms
92,160 KB
testcase_25 AC 115 ms
91,520 KB
testcase_26 AC 254 ms
108,800 KB
testcase_27 AC 166 ms
108,928 KB
testcase_28 AC 178 ms
108,416 KB
testcase_29 AC 146 ms
108,672 KB
testcase_30 AC 170 ms
108,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 二重ループ可能
# a2とa3を決めれば、k, a1, a4も決まる
# a2とa3を決めたときにa2までのa1の個数かけるa3後のa4の個数
# インデックス番号までにどの数字が何個出ていたかカウントする

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

A_max = 2001 # 2001にすること
count = []
old = [0]*A_max
count.append(old)
for i in range(N):
    new = []
    for j in range(A_max):
        new.append(old[j])
    new[A[i]] += 1
    count.append(new)
    old = new
    
ans = 0
for a2_idx in range(1, N-2):
    for a3_idx in range(a2_idx+1, N-1):
        #print('a2_idx', a2_idx, 'a3_idx', a3_idx)
        a2 = A[a2_idx]
        k = a2 - A[a3_idx]
        
        if k <= 0:
            continue
        a1 = a2-(k+10)
        a4 = a2+1
        if a1 <= 0 or A_max <= a1:
            continue
        if a4 <= 0 or A_max <= a4:
            continue        
        add = count[a2_idx][a1]*(count[N][a4]-count[a3_idx+1][a4])
        #print('a2', a2, 'k', k, 'add', add)
        ans += add
print(ans)
        


0