結果

問題 No.2374 ASKT Subsequences
ユーザー ニックネームニックネーム
提出日時 2023-07-07 22:32:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 366 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,820 KB
最終ジャッジ日時 2024-07-21 18:41:50
合計ジャッジ時間 11,141 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,384 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 39 ms
10,752 KB
testcase_04 AC 41 ms
10,624 KB
testcase_05 AC 41 ms
10,752 KB
testcase_06 AC 38 ms
10,752 KB
testcase_07 AC 294 ms
10,880 KB
testcase_08 AC 318 ms
10,752 KB
testcase_09 AC 330 ms
10,752 KB
testcase_10 AC 1,254 ms
10,880 KB
testcase_11 AC 495 ms
10,752 KB
testcase_12 AC 354 ms
10,752 KB
testcase_13 AC 354 ms
10,752 KB
testcase_14 AC 962 ms
10,624 KB
testcase_15 AC 1,867 ms
10,752 KB
testcase_16 AC 664 ms
10,752 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
s = set(a); m = max(a); ans = 0
for k in range(1,m):
    for t in range(1,m):
        p = [t,t+k+10,t+10,t+k+11]; f = True
        for v in p: f &= v in s
        if not f: continue
        dp = [1,0,0,0,0]
        for v in a:
            if v in p: i = p.index(v); dp[i+1] += dp[i]
        ans += dp[4]
print(ans)
0