結果

問題 No.3009 異なる数字の最大の範囲(勉強会用)
ユーザー zaki_chemtechzaki_chemtech
提出日時 2020-07-10 10:11:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 5,000 ms
コード長 322 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 100,060 KB
最終ジャッジ日時 2024-04-30 17:44:30
合計ジャッジ時間 1,969 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,824 KB
testcase_01 AC 32 ms
52,004 KB
testcase_02 AC 32 ms
52,356 KB
testcase_03 AC 33 ms
52,652 KB
testcase_04 AC 34 ms
53,056 KB
testcase_05 AC 32 ms
53,044 KB
testcase_06 AC 33 ms
52,664 KB
testcase_07 AC 33 ms
52,192 KB
testcase_08 AC 32 ms
52,876 KB
testcase_09 AC 35 ms
52,344 KB
testcase_10 AC 32 ms
52,560 KB
testcase_11 AC 33 ms
52,736 KB
testcase_12 AC 34 ms
52,016 KB
testcase_13 AC 32 ms
52,908 KB
testcase_14 AC 33 ms
52,128 KB
testcase_15 AC 58 ms
83,268 KB
testcase_16 AC 56 ms
80,028 KB
testcase_17 AC 58 ms
82,324 KB
testcase_18 AC 78 ms
100,060 KB
testcase_19 AC 63 ms
85,896 KB
testcase_20 AC 50 ms
73,768 KB
testcase_21 AC 42 ms
64,872 KB
testcase_22 AC 52 ms
74,744 KB
testcase_23 AC 46 ms
68,632 KB
testcase_24 AC 70 ms
97,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())

a = list(map(int,input().split()))

head = 0

check = {a[0]:0}

ans = 0

for tail in range(1,n):
    if a[tail] in check and head <= check[a[tail]]:
        ans = max(ans, tail-head)
        head = check[a[tail]]+1    

    check[a[tail]] = tail
    #print(ans,tail,head)
ans = max(ans, n-head)

print(ans)
0