結果

問題 No.3009 異なる数字の最大の範囲(勉強会用)
ユーザー zaki_chemtechzaki_chemtech
提出日時 2020-07-10 10:11:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 5,000 ms
コード長 322 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 99,680 KB
最終ジャッジ日時 2024-11-20 15:01:53
合計ジャッジ時間 2,206 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,396 KB
testcase_01 AC 40 ms
52,148 KB
testcase_02 AC 41 ms
52,576 KB
testcase_03 AC 40 ms
52,948 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 43 ms
53,424 KB
testcase_06 AC 38 ms
52,504 KB
testcase_07 AC 38 ms
52,952 KB
testcase_08 AC 37 ms
52,456 KB
testcase_09 AC 37 ms
52,972 KB
testcase_10 AC 37 ms
52,488 KB
testcase_11 AC 38 ms
53,440 KB
testcase_12 AC 38 ms
52,768 KB
testcase_13 AC 39 ms
52,740 KB
testcase_14 AC 38 ms
52,640 KB
testcase_15 AC 65 ms
82,284 KB
testcase_16 AC 62 ms
80,632 KB
testcase_17 AC 65 ms
82,324 KB
testcase_18 AC 83 ms
99,680 KB
testcase_19 AC 69 ms
85,108 KB
testcase_20 AC 54 ms
72,040 KB
testcase_21 AC 45 ms
64,952 KB
testcase_22 AC 56 ms
74,296 KB
testcase_23 AC 49 ms
68,356 KB
testcase_24 AC 74 ms
97,940 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