結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 29 ms
10,496 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 27 ms
10,624 KB
testcase_13 WA -
testcase_14 AC 28 ms
10,624 KB
testcase_15 AC 1,102 ms
16,140 KB
testcase_16 AC 933 ms
15,448 KB
testcase_17 AC 1,155 ms
15,984 KB
testcase_18 AC 1,808 ms
20,412 KB
testcase_19 AC 1,289 ms
16,720 KB
testcase_20 AC 683 ms
13,684 KB
testcase_21 AC 265 ms
12,160 KB
testcase_22 AC 746 ms
14,532 KB
testcase_23 AC 397 ms
12,800 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)
print(ans)
0