結果

問題 No.2374 ASKT Subsequences
ユーザー koki-masutanikoki-masutani
提出日時 2024-03-19 23:05:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 461 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 81,152 KB
最終ジャッジ日時 2024-09-30 05:52:27
合計ジャッジ時間 5,409 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
57,088 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 AC 41 ms
59,264 KB
testcase_05 AC 36 ms
51,840 KB
testcase_06 AC 35 ms
51,712 KB
testcase_07 AC 54 ms
64,000 KB
testcase_08 AC 47 ms
61,184 KB
testcase_09 AC 52 ms
63,616 KB
testcase_10 AC 77 ms
72,704 KB
testcase_11 AC 884 ms
75,776 KB
testcase_12 AC 179 ms
75,520 KB
testcase_13 AC 126 ms
75,392 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
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()))
ans = 0
for i in range(N - 3):
    for j in range(i + 1, N - 2):
        for k in range(j + 1, N - 1):
            for l in range(k + 1, N):
                if (
                    A[i] + 10 == A[k]
                    and A[j] + 1 == A[l]
                    and A[i] < A[j]
                    and A[j] > A[k]
                    and A[k] < A[l]
                ):
                    ans += 1
print(ans)
0