結果

問題 No.1885 Flat Permutation
ユーザー maimai
提出日時 2022-03-25 23:15:57
言語 Ruby
(3.3.0)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 665 bytes
コンパイル時間 44 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-10-14 07:24:42
合計ジャッジ時間 7,923 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,416 KB
testcase_01 AC 94 ms
12,160 KB
testcase_02 AC 92 ms
12,160 KB
testcase_03 AC 99 ms
12,288 KB
testcase_04 AC 90 ms
12,160 KB
testcase_05 AC 91 ms
12,160 KB
testcase_06 AC 92 ms
12,416 KB
testcase_07 AC 91 ms
12,160 KB
testcase_08 AC 90 ms
12,288 KB
testcase_09 AC 91 ms
12,288 KB
testcase_10 AC 91 ms
12,160 KB
testcase_11 AC 92 ms
12,160 KB
testcase_12 AC 92 ms
12,160 KB
testcase_13 AC 92 ms
12,160 KB
testcase_14 AC 91 ms
12,160 KB
testcase_15 AC 100 ms
12,160 KB
testcase_16 AC 94 ms
12,160 KB
testcase_17 AC 94 ms
12,160 KB
testcase_18 AC 91 ms
12,288 KB
testcase_19 AC 204 ms
12,288 KB
testcase_20 AC 203 ms
12,288 KB
testcase_21 AC 205 ms
12,416 KB
testcase_22 AC 194 ms
12,288 KB
testcase_23 AC 91 ms
12,160 KB
testcase_24 AC 89 ms
12,160 KB
testcase_25 AC 91 ms
12,160 KB
testcase_26 AC 94 ms
12,160 KB
testcase_27 AC 206 ms
12,288 KB
testcase_28 AC 205 ms
12,416 KB
testcase_29 AC 205 ms
12,544 KB
testcase_30 AC 205 ms
12,288 KB
testcase_31 AC 206 ms
12,416 KB
testcase_32 AC 92 ms
12,160 KB
testcase_33 AC 94 ms
12,288 KB
testcase_34 AC 90 ms
12,416 KB
testcase_35 AC 210 ms
12,288 KB
testcase_36 AC 205 ms
12,544 KB
testcase_37 AC 92 ms
12,160 KB
testcase_38 AC 91 ms
12,160 KB
testcase_39 AC 92 ms
12,160 KB
testcase_40 AC 114 ms
12,416 KB
testcase_41 AC 141 ms
12,416 KB
testcase_42 AC 102 ms
12,288 KB
testcase_43 AC 206 ms
12,288 KB
testcase_44 AC 205 ms
12,288 KB
testcase_45 AC 207 ms
12,288 KB
testcase_46 AC 205 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def lscan; gets.split.map(&:to_i); end


def fibo(n)
  return 1 if n <= 0
  a1 = 1
  a2 = 0
  a3 = 0
  n.times do
    b1 = a2 + a1
    b2 = a3 + 0
    b3 =  0 + a1
    a1,a2,a3=[b1,b2,b3].map{|x| x%998244353}
    # p [a1,a2,a3]
  end
  a1
end

def solve(n,x,y)
  return 1 if n <= 2
  return solve(n,y,x) if x > y
  
  x -= 1 if x == 1
  y += 1 if y == n
  
  return 0 if y - x <= 1
  
  fibo(y-x-2)
end


n,x,y = lscan

# (1..n).each do |x|
#   (1..n).each do |y|

# a = (1..n).to_a.permutation(n).count {|li|
#   li[0] == x && li[-1] == y && li.each_cons(2).all?{|a, b| (a-b).abs <= 2}
# }

# a -= solve(n,x,y)

# printf "%3d", a
# end
# puts
# end

p solve(n,x,y)
0