結果

問題 No.3009 異なる数字の最大の範囲(勉強会用)
ユーザー gemmarogemmaro
提出日時 2020-05-01 13:15:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 211 ms / 5,000 ms
コード長 386 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,340 KB
最終ジャッジ日時 2024-11-20 15:01:40
合計ジャッジ時間 3,777 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
22,528 KB
testcase_01 AC 82 ms
22,504 KB
testcase_02 AC 79 ms
22,400 KB
testcase_03 AC 79 ms
22,460 KB
testcase_04 AC 78 ms
22,528 KB
testcase_05 AC 80 ms
22,272 KB
testcase_06 AC 80 ms
22,528 KB
testcase_07 AC 80 ms
22,400 KB
testcase_08 AC 80 ms
22,528 KB
testcase_09 AC 81 ms
22,496 KB
testcase_10 AC 80 ms
22,528 KB
testcase_11 AC 80 ms
22,512 KB
testcase_12 AC 80 ms
22,528 KB
testcase_13 AC 79 ms
22,272 KB
testcase_14 AC 80 ms
22,400 KB
testcase_15 AC 154 ms
23,416 KB
testcase_16 AC 147 ms
23,192 KB
testcase_17 AC 153 ms
23,300 KB
testcase_18 AC 211 ms
24,100 KB
testcase_19 AC 166 ms
24,340 KB
testcase_20 AC 122 ms
23,332 KB
testcase_21 AC 100 ms
23,444 KB
testcase_22 AC 131 ms
23,712 KB
testcase_23 AC 107 ms
23,576 KB
testcase_24 AC 207 ms
23,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import array


def solve(n, d):
    l = r = m = 0
    c = array.array("i", [False] * (10 ** 6 + 1))

    while r < n:
        if c[d[r]]:
            m = max(m, r - l)
            c[d[l]] = False
            l += 1
        else:
            c[d[r]] = True
            r += 1
    return max(m, r - l)


n = int(input())
d = array.array("i", map(int, input().split()))

print(solve(n, d))
0