結果
問題 |
No.3009 Union-Find でつながろう!
|
ユーザー |
![]() |
提出日時 | 2025-04-15 23:20:36 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 424 bytes |
コンパイル時間 | 238 ms |
コンパイル使用メモリ | 82,252 KB |
実行使用メモリ | 66,880 KB |
最終ジャッジ日時 | 2025-04-15 23:22:07 |
合計ジャッジ時間 | 3,634 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 27 |
ソースコード
n = int(input()) if n == 0: print(0) exit() a = list(map(int, input().split())) last_pos = {} max_length = 0 left = 0 for right in range(n): current = a[right] if current in last_pos and last_pos[current] >= left: left = last_pos[current] + 1 last_pos[current] = right current_length = right - left + 1 if current_length > max_length: max_length = current_length print(max_length)