結果

問題 No.3009 異なる数字の最大の範囲(勉強会用)
ユーザー zutsuzutsu
提出日時 2022-05-15 21:59:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 355 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 27,332 KB
最終ジャッジ日時 2024-06-12 22:40:27
合計ジャッジ時間 15,790 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 27 ms
10,624 KB
testcase_11 AC 27 ms
10,496 KB
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 26 ms
10,624 KB
testcase_14 AC 27 ms
10,752 KB
testcase_15 AC 1,075 ms
16,220 KB
testcase_16 AC 931 ms
15,444 KB
testcase_17 AC 1,123 ms
16,112 KB
testcase_18 AC 1,767 ms
20,548 KB
testcase_19 AC 1,247 ms
16,592 KB
testcase_20 AC 656 ms
13,676 KB
testcase_21 AC 262 ms
12,288 KB
testcase_22 AC 734 ms
14,540 KB
testcase_23 AC 386 ms
12,672 KB
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N = int(input())
A = list(map(int, input().split()))
ans = 0
ct = 0
q = deque()

for a in A:
    if a not in q:
        q.append(a)
        ct += 1
    else:
        ans = max(ans, ct)
        while q[0] != a:
            q.popleft()
            ct -= 1
        q.popleft()
        q.append(a)
ans = max(ans, ct)
print(ans)
0