結果
問題 | No.2374 ASKT Subsequences |
ユーザー | ntuda |
提出日時 | 2023-07-08 01:08:55 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 480 bytes |
コンパイル時間 | 206 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 81,792 KB |
最終ジャッジ日時 | 2024-07-21 21:29:25 |
合計ジャッジ時間 | 9,319 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
58,880 KB |
testcase_01 | AC | 47 ms
53,888 KB |
testcase_02 | AC | 46 ms
54,016 KB |
testcase_03 | AC | 47 ms
54,016 KB |
testcase_04 | AC | 47 ms
53,760 KB |
testcase_05 | WA | - |
testcase_06 | AC | 54 ms
53,376 KB |
testcase_07 | AC | 51 ms
54,016 KB |
testcase_08 | WA | - |
testcase_09 | AC | 47 ms
53,888 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | TLE | - |
testcase_26 | WA | - |
testcase_27 | TLE | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
from bisect import * N = int(input()) A = list(map(int,input().split())) from collections import defaultdict dic = defaultdict(list) for i,a in enumerate(A): dic[a].append(i) ans = 0 for i in range(N - 3): a = A[i] for j in range(i + 1,N - 2): b = A[j] if dic[a+10]: for k in dic[a + 10]: if i < j < k: if dic[b + 1]: ans += len(dic[b + 1]) - bisect_left(dic[b + 1],k) print(ans)