結果

問題 No.1885 Flat Permutation
ユーザー ikomaikoma
提出日時 2022-03-26 00:39:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 260 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 81,816 KB
実行使用メモリ 60,968 KB
最終ジャッジ日時 2024-10-14 09:04:43
合計ジャッジ時間 3,470 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,228 KB
testcase_01 AC 38 ms
52,100 KB
testcase_02 AC 38 ms
52,116 KB
testcase_03 AC 41 ms
57,904 KB
testcase_04 AC 37 ms
52,396 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 38 ms
53,176 KB
testcase_07 AC 37 ms
52,448 KB
testcase_08 AC 37 ms
52,760 KB
testcase_09 AC 37 ms
52,672 KB
testcase_10 AC 38 ms
52,964 KB
testcase_11 AC 37 ms
52,740 KB
testcase_12 AC 36 ms
52,148 KB
testcase_13 AC 37 ms
53,112 KB
testcase_14 AC 37 ms
52,660 KB
testcase_15 AC 37 ms
53,436 KB
testcase_16 AC 38 ms
53,488 KB
testcase_17 AC 37 ms
52,948 KB
testcase_18 AC 38 ms
52,376 KB
testcase_19 AC 44 ms
59,692 KB
testcase_20 AC 44 ms
60,252 KB
testcase_21 AC 44 ms
59,456 KB
testcase_22 AC 43 ms
59,164 KB
testcase_23 AC 37 ms
52,328 KB
testcase_24 AC 37 ms
52,592 KB
testcase_25 AC 39 ms
52,860 KB
testcase_26 AC 37 ms
52,932 KB
testcase_27 AC 43 ms
60,968 KB
testcase_28 AC 44 ms
60,096 KB
testcase_29 AC 44 ms
60,060 KB
testcase_30 AC 43 ms
59,632 KB
testcase_31 AC 42 ms
59,528 KB
testcase_32 AC 37 ms
52,756 KB
testcase_33 AC 38 ms
52,488 KB
testcase_34 AC 38 ms
53,056 KB
testcase_35 AC 43 ms
59,508 KB
testcase_36 AC 43 ms
60,156 KB
testcase_37 AC 37 ms
53,184 KB
testcase_38 AC 37 ms
52,864 KB
testcase_39 AC 38 ms
53,008 KB
testcase_40 AC 41 ms
59,100 KB
testcase_41 AC 42 ms
59,152 KB
testcase_42 AC 42 ms
59,464 KB
testcase_43 AC 44 ms
59,792 KB
testcase_44 AC 44 ms
59,672 KB
testcase_45 AC 44 ms
59,924 KB
testcase_46 AC 43 ms
60,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X,Y=map(int,input().split())
X,Y=X-1,Y-1

MOD = 998244353

if X>Y:X,Y=Y,X
if X!=0:X+=1
if Y!=N-1:Y-=1

d = Y-X+1
if d<3:
    print(max(0,min(1,d)))
    exit()
dp=[0]*d
dp[0]=1
dp[1]=1
dp[2]=1
for i in range(3,d):
    dp[i]=(dp[i-1]+dp[i-3])%MOD
print(dp[-1])
0