結果

問題 No.2126 MEX Game
ユーザー simansiman
提出日時 2022-11-20 07:39:03
言語 Ruby
(3.3.0)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 43 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 32,256 KB
最終ジャッジ日時 2024-09-21 09:40:51
合計ジャッジ時間 4,477 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,288 KB
testcase_01 AC 81 ms
12,288 KB
testcase_02 AC 80 ms
12,032 KB
testcase_03 AC 82 ms
12,160 KB
testcase_04 AC 84 ms
12,032 KB
testcase_05 AC 80 ms
12,160 KB
testcase_06 AC 79 ms
12,160 KB
testcase_07 AC 79 ms
12,032 KB
testcase_08 AC 79 ms
12,032 KB
testcase_09 AC 82 ms
12,160 KB
testcase_10 AC 158 ms
23,680 KB
testcase_11 AC 177 ms
23,808 KB
testcase_12 AC 168 ms
25,728 KB
testcase_13 AC 168 ms
25,600 KB
testcase_14 AC 161 ms
26,752 KB
testcase_15 AC 165 ms
26,752 KB
testcase_16 AC 163 ms
26,368 KB
testcase_17 AC 148 ms
19,840 KB
testcase_18 AC 151 ms
19,968 KB
testcase_19 AC 137 ms
19,968 KB
testcase_20 AC 135 ms
20,096 KB
testcase_21 AC 173 ms
32,256 KB
testcase_22 AC 83 ms
12,160 KB
testcase_23 AC 80 ms
12,160 KB
testcase_24 AC 78 ms
12,160 KB
testcase_25 AC 78 ms
12,288 KB
testcase_26 AC 81 ms
12,160 KB
testcase_27 AC 81 ms
12,160 KB
testcase_28 AC 82 ms
12,160 KB
testcase_29 AC 83 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:6: warning: assigned but unused variable - ans
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i).sort
C = A.tally
C.default = 0

ans = 0

def f(nums)
  c = nums.tally
  c.default = 0
  m = nums.max

  0.upto(m) do |x|
    return [false, x] if c[x] <= 1
  end

  [true, m + 1]
end

res, v = f(A)

if res
  puts v
else
  idx = A.rindex { |a| a > v }
  idx = A.index { |a| a < v && C[a] >= 3 } if idx.nil?

  if idx.nil?
    puts v
  else
    A[idx] = v

    _, v = f(A)

    puts v
  end
end
0