結果

問題 No.3009 異なる数字の最大の範囲(勉強会用)
ユーザー zaki_chemtechzaki_chemtech
提出日時 2020-07-10 09:50:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 307 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 96,188 KB
最終ジャッジ日時 2024-06-12 22:36:43
合計ジャッジ時間 2,170 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 35 ms
51,900 KB
testcase_02 AC 35 ms
52,268 KB
testcase_03 AC 35 ms
52,976 KB
testcase_04 AC 35 ms
53,724 KB
testcase_05 WA -
testcase_06 AC 35 ms
53,072 KB
testcase_07 AC 36 ms
52,360 KB
testcase_08 WA -
testcase_09 AC 34 ms
52,640 KB
testcase_10 AC 35 ms
52,460 KB
testcase_11 AC 36 ms
52,184 KB
testcase_12 AC 35 ms
52,336 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 71 ms
96,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())

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

head = 0

check = {a[0]:1}

ans = 0

for tail in range(1,n):
    if a[tail] in check:
        ans = max(ans, tail-head)
        head = tail
        check = {a[tail]:1}
    else:
        check[a[tail]] = 1
    #print(ans)
ans = max(ans, n-head)

print(ans)
0