結果

問題 No.3009 異なる数字の最大の範囲(勉強会用)
ユーザー brthyyjpbrthyyjp
提出日時 2021-05-23 18:31:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 5,000 ms
コード長 312 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 97,972 KB
最終ジャッジ日時 2024-11-20 15:07:52
合計ジャッジ時間 2,356 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,636 KB
testcase_01 AC 39 ms
53,184 KB
testcase_02 AC 38 ms
53,252 KB
testcase_03 AC 38 ms
52,568 KB
testcase_04 AC 37 ms
53,012 KB
testcase_05 AC 38 ms
52,372 KB
testcase_06 AC 38 ms
52,516 KB
testcase_07 AC 38 ms
52,888 KB
testcase_08 AC 38 ms
52,476 KB
testcase_09 AC 38 ms
51,856 KB
testcase_10 AC 38 ms
52,236 KB
testcase_11 AC 37 ms
53,008 KB
testcase_12 AC 38 ms
52,276 KB
testcase_13 AC 37 ms
53,040 KB
testcase_14 AC 38 ms
52,812 KB
testcase_15 AC 66 ms
78,740 KB
testcase_16 AC 61 ms
76,444 KB
testcase_17 AC 65 ms
79,600 KB
testcase_18 AC 80 ms
89,392 KB
testcase_19 AC 65 ms
81,576 KB
testcase_20 AC 57 ms
71,844 KB
testcase_21 AC 49 ms
66,108 KB
testcase_22 AC 56 ms
73,600 KB
testcase_23 AC 52 ms
68,768 KB
testcase_24 AC 80 ms
97,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
j = 0
s = set()
ans = 0
for i in range(n):
    while j < n:
        if A[j] not in s:
            s.add(A[j])
            j += 1
        else:
            break
    ans = max(ans, j-i)
    if i == j:
        j += 1
    else:
        s.remove(A[i])
print(ans)
0