結果

問題 No.3009 異なる数字の最大の範囲(勉強会用)
ユーザー yozayoza
提出日時 2015-02-28 17:09:20
言語 Nim
(2.0.2)
結果
AC  
実行時間 21 ms / 5,000 ms
コード長 410 bytes
コンパイル時間 3,612 ms
コンパイル使用メモリ 66,728 KB
実行使用メモリ 16,820 KB
最終ジャッジ日時 2024-11-20 14:59:43
合計ジャッジ時間 4,594 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
10,864 KB
testcase_01 AC 4 ms
10,856 KB
testcase_02 AC 4 ms
10,844 KB
testcase_03 AC 5 ms
10,788 KB
testcase_04 AC 5 ms
10,784 KB
testcase_05 AC 4 ms
10,832 KB
testcase_06 AC 4 ms
10,804 KB
testcase_07 AC 4 ms
10,836 KB
testcase_08 AC 4 ms
10,856 KB
testcase_09 AC 4 ms
10,784 KB
testcase_10 AC 5 ms
10,824 KB
testcase_11 AC 4 ms
10,864 KB
testcase_12 AC 5 ms
10,744 KB
testcase_13 AC 4 ms
10,788 KB
testcase_14 AC 5 ms
10,780 KB
testcase_15 AC 13 ms
14,468 KB
testcase_16 AC 12 ms
13,424 KB
testcase_17 AC 13 ms
14,424 KB
testcase_18 AC 20 ms
16,820 KB
testcase_19 AC 13 ms
14,788 KB
testcase_20 AC 10 ms
12,296 KB
testcase_21 AC 7 ms
11,540 KB
testcase_22 AC 11 ms
13,372 KB
testcase_23 AC 8 ms
12,324 KB
testcase_24 AC 21 ms
16,528 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 39) Warning: imported and not used: 'math' [UnusedImport]
/home/judge/data/code/Main.nim(1, 28) Warning: imported and not used: 'algorithm' [UnusedImport]

ソースコード

diff #

import strutils, sequtils, algorithm, math


var
  n = readLine(stdin).parseInt()
  a_seq = readLine(stdin).split(' ').map(parseInt)
  inchworm = newSeq[int](1_000_002)
  right, tmp_a : int
  left, max_len = 0

for right in countup(1, n):
  tmp_a = a_seq[right - 1]
  if inchworm[tmp_a] > 0:
    left = max(inchworm[tmp_a], left)
  max_len = max(max_len, right - left)
  inchworm[tmp_a] = right

echo(max_len)
0