結果
問題 | No.3009 異なる数字の最大の範囲(勉強会用) |
ユーザー | zaki_chemtech |
提出日時 | 2020-07-10 09:58:22 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 321 bytes |
コンパイル時間 | 234 ms |
コンパイル使用メモリ | 82,096 KB |
実行使用メモリ | 97,344 KB |
最終ジャッジ日時 | 2024-06-12 22:36:56 |
合計ジャッジ時間 | 2,171 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 34 ms
52,276 KB |
testcase_03 | AC | 34 ms
52,572 KB |
testcase_04 | AC | 35 ms
52,964 KB |
testcase_05 | WA | - |
testcase_06 | AC | 34 ms
53,032 KB |
testcase_07 | AC | 33 ms
52,436 KB |
testcase_08 | AC | 34 ms
53,376 KB |
testcase_09 | AC | 34 ms
52,296 KB |
testcase_10 | AC | 33 ms
52,632 KB |
testcase_11 | AC | 35 ms
52,216 KB |
testcase_12 | AC | 34 ms
52,432 KB |
testcase_13 | AC | 36 ms
52,180 KB |
testcase_14 | AC | 35 ms
51,812 KB |
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
95,716 KB |
ソースコード
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: ans = max(ans, tail-head) head = check[a[tail]]+1 check[a[tail]] = tail else: check[a[tail]] = 1 #print(ans) ans = max(ans, n-head) print(ans)