結果

問題 No.3009 異なる数字の最大の範囲(勉強会用)
ユーザー mbanmban
提出日時 2017-09-09 17:16:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 5,000 ms
コード長 297 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 91,020 KB
最終ジャッジ日時 2024-11-20 15:01:14
合計ジャッジ時間 2,287 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
65,660 KB
testcase_01 AC 45 ms
65,788 KB
testcase_02 AC 45 ms
65,504 KB
testcase_03 AC 44 ms
65,488 KB
testcase_04 AC 45 ms
65,400 KB
testcase_05 AC 48 ms
65,864 KB
testcase_06 AC 46 ms
66,116 KB
testcase_07 AC 45 ms
65,292 KB
testcase_08 AC 49 ms
66,048 KB
testcase_09 AC 46 ms
64,832 KB
testcase_10 AC 49 ms
65,400 KB
testcase_11 AC 46 ms
65,264 KB
testcase_12 AC 47 ms
65,928 KB
testcase_13 AC 48 ms
65,056 KB
testcase_14 AC 47 ms
66,504 KB
testcase_15 AC 64 ms
82,916 KB
testcase_16 AC 65 ms
80,684 KB
testcase_17 AC 66 ms
83,124 KB
testcase_18 AC 75 ms
91,020 KB
testcase_19 AC 66 ms
83,568 KB
testcase_20 AC 57 ms
76,892 KB
testcase_21 AC 57 ms
72,316 KB
testcase_22 AC 62 ms
78,008 KB
testcase_23 AC 58 ms
73,556 KB
testcase_24 AC 70 ms
89,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
B=[False for i in range(1000001)]

right=-1
length=0
anser=-1
for left in range(N):
    if B[A[left]]:
        while B[A[left]]:
            right+=1
            B[A[right]]=False
    
    B[A[left]]=True
    anser=max(anser,left-right)
print(anser)
0