結果

問題 No.2374 ASKT Subsequences
ユーザー ニックネームニックネーム
提出日時 2023-07-07 22:32:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 366 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 83,464 KB
最終ジャッジ日時 2024-07-21 18:44:59
合計ジャッジ時間 10,844 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,344 KB
testcase_01 AC 49 ms
60,672 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 55 ms
62,976 KB
testcase_04 AC 59 ms
64,640 KB
testcase_05 AC 54 ms
61,952 KB
testcase_06 AC 63 ms
64,384 KB
testcase_07 AC 90 ms
75,836 KB
testcase_08 AC 95 ms
75,904 KB
testcase_09 AC 102 ms
76,188 KB
testcase_10 AC 174 ms
75,776 KB
testcase_11 AC 116 ms
76,288 KB
testcase_12 AC 111 ms
75,776 KB
testcase_13 AC 102 ms
75,904 KB
testcase_14 AC 163 ms
76,032 KB
testcase_15 AC 235 ms
76,256 KB
testcase_16 AC 128 ms
76,284 KB
testcase_17 AC 388 ms
76,224 KB
testcase_18 AC 1,321 ms
76,416 KB
testcase_19 AC 1,004 ms
76,276 KB
testcase_20 TLE -
testcase_21 TLE -
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