結果

問題 No.1885 Flat Permutation
ユーザー simansiman
提出日時 2022-05-12 17:40:08
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 265 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 7,168 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-07-20 11:33:59
合計ジャッジ時間 7,772 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,032 KB
testcase_01 AC 93 ms
12,160 KB
testcase_02 WA -
testcase_03 AC 92 ms
12,032 KB
testcase_04 AC 90 ms
12,160 KB
testcase_05 AC 90 ms
12,160 KB
testcase_06 AC 90 ms
12,288 KB
testcase_07 AC 89 ms
12,032 KB
testcase_08 AC 90 ms
12,160 KB
testcase_09 AC 91 ms
12,160 KB
testcase_10 AC 91 ms
12,032 KB
testcase_11 AC 91 ms
12,032 KB
testcase_12 AC 90 ms
12,160 KB
testcase_13 AC 90 ms
12,160 KB
testcase_14 AC 91 ms
12,160 KB
testcase_15 AC 90 ms
12,032 KB
testcase_16 AC 90 ms
12,288 KB
testcase_17 AC 93 ms
12,160 KB
testcase_18 AC 91 ms
12,160 KB
testcase_19 AC 142 ms
13,696 KB
testcase_20 AC 144 ms
13,824 KB
testcase_21 AC 142 ms
13,568 KB
testcase_22 AC 137 ms
13,568 KB
testcase_23 AC 91 ms
12,160 KB
testcase_24 AC 91 ms
12,288 KB
testcase_25 WA -
testcase_26 AC 91 ms
12,288 KB
testcase_27 AC 142 ms
13,568 KB
testcase_28 AC 140 ms
13,696 KB
testcase_29 AC 141 ms
13,696 KB
testcase_30 AC 143 ms
13,696 KB
testcase_31 AC 143 ms
13,696 KB
testcase_32 AC 92 ms
12,160 KB
testcase_33 AC 91 ms
12,288 KB
testcase_34 WA -
testcase_35 AC 143 ms
13,696 KB
testcase_36 AC 142 ms
13,696 KB
testcase_37 AC 90 ms
12,160 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 101 ms
12,160 KB
testcase_41 AC 112 ms
12,672 KB
testcase_42 AC 95 ms
12,160 KB
testcase_43 AC 139 ms
13,568 KB
testcase_44 AC 142 ms
13,696 KB
testcase_45 AC 139 ms
13,696 KB
testcase_46 AC 140 ms
13,696 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, x, y = gets.split.map(&:to_i)
MOD = 998_244_353

if x > y
  x, y = y, x
end

x += 1 if x != 1
y -= 1 if y != N

d = y - x
dp = Array.new(d + 1, 0)
dp[0] = 1

1.upto(d) do |i|
  dp[i] += dp[i - 1]
  dp[i] += dp[i - 3] if i - 3 >= 0
  dp[i] %= MOD
end

puts dp[d]
0