結果

問題 No.632 穴埋め門松列
ユーザー simansiman
提出日時 2020-05-27 01:13:15
言語 Ruby
(3.3.0)
結果
AC  
実行時間 95 ms / 1,000 ms
コード長 374 bytes
コンパイル時間 35 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-10-13 03:09:20
合計ジャッジ時間 1,146 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,288 KB
testcase_01 AC 95 ms
12,160 KB
testcase_02 AC 91 ms
12,160 KB
testcase_03 AC 88 ms
12,160 KB
testcase_04 AC 90 ms
12,032 KB
testcase_05 AC 88 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

C1, C2, C3 = gets.chomp.split.map { |c|
  if c == '?'
    -1
  else
    c.to_i
  end
}

def f(nums)
  return true if nums[0] < nums[1] && nums[1] > nums[2]
  return true if nums[0] > nums[1] && nums[1] < nums[2]

  false
end

nums = [C1, C2, C3]
idx = nums.index(-1)

ans = ''
nums[idx] = 1

if f(nums)
  ans += '1'
end

nums[idx] = 4

if f(nums)
  ans += '4'
end

puts ans
0