結果

問題 No.2126 MEX Game
ユーザー simansiman
提出日時 2022-11-20 07:37:21
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 379 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 32,128 KB
最終ジャッジ日時 2024-09-21 09:40:32
合計ジャッジ時間 5,210 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,416 KB
testcase_01 AC 91 ms
12,160 KB
testcase_02 AC 93 ms
12,288 KB
testcase_03 AC 92 ms
12,288 KB
testcase_04 AC 90 ms
12,288 KB
testcase_05 AC 94 ms
12,160 KB
testcase_06 AC 89 ms
12,288 KB
testcase_07 WA -
testcase_08 AC 91 ms
12,160 KB
testcase_09 AC 89 ms
12,160 KB
testcase_10 AC 174 ms
23,936 KB
testcase_11 AC 178 ms
23,680 KB
testcase_12 AC 181 ms
25,856 KB
testcase_13 AC 178 ms
25,728 KB
testcase_14 AC 179 ms
26,752 KB
testcase_15 AC 179 ms
26,624 KB
testcase_16 AC 173 ms
26,368 KB
testcase_17 AC 163 ms
19,840 KB
testcase_18 AC 162 ms
20,096 KB
testcase_19 AC 149 ms
20,096 KB
testcase_20 AC 146 ms
20,224 KB
testcase_21 AC 185 ms
32,128 KB
testcase_22 AC 91 ms
12,160 KB
testcase_23 AC 89 ms
12,288 KB
testcase_24 AC 87 ms
12,288 KB
testcase_25 AC 92 ms
12,288 KB
testcase_26 WA -
testcase_27 AC 92 ms
12,288 KB
testcase_28 AC 89 ms
12,160 KB
testcase_29 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 }

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

    _, v = f(A)

    puts v
  end
end
0