結果

問題 No.1885 Flat Permutation
ユーザー titiatitia
提出日時 2022-03-25 21:53:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 266 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 22,400 KB
最終ジャッジ日時 2024-10-14 05:49:20
合計ジャッジ時間 9,133 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 157 ms
22,272 KB
testcase_02 AC 159 ms
22,272 KB
testcase_03 AC 157 ms
22,144 KB
testcase_04 AC 157 ms
22,144 KB
testcase_05 AC 159 ms
22,400 KB
testcase_06 AC 159 ms
22,272 KB
testcase_07 AC 166 ms
22,272 KB
testcase_08 AC 160 ms
22,272 KB
testcase_09 AC 159 ms
22,144 KB
testcase_10 AC 162 ms
22,400 KB
testcase_11 AC 158 ms
22,144 KB
testcase_12 AC 163 ms
22,272 KB
testcase_13 AC 159 ms
22,144 KB
testcase_14 AC 158 ms
22,272 KB
testcase_15 AC 163 ms
22,144 KB
testcase_16 AC 161 ms
22,144 KB
testcase_17 AC 160 ms
22,272 KB
testcase_18 AC 160 ms
22,272 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 156 ms
22,144 KB
testcase_22 AC 156 ms
22,272 KB
testcase_23 AC 155 ms
22,272 KB
testcase_24 AC 162 ms
22,272 KB
testcase_25 AC 160 ms
22,144 KB
testcase_26 AC 157 ms
22,272 KB
testcase_27 AC 160 ms
22,400 KB
testcase_28 AC 160 ms
22,144 KB
testcase_29 AC 162 ms
22,400 KB
testcase_30 AC 160 ms
22,144 KB
testcase_31 AC 160 ms
22,144 KB
testcase_32 AC 163 ms
22,144 KB
testcase_33 AC 161 ms
22,272 KB
testcase_34 AC 158 ms
22,272 KB
testcase_35 AC 158 ms
22,272 KB
testcase_36 AC 157 ms
22,144 KB
testcase_37 AC 165 ms
22,400 KB
testcase_38 AC 156 ms
22,144 KB
testcase_39 AC 166 ms
22,272 KB
testcase_40 AC 160 ms
22,144 KB
testcase_41 AC 164 ms
22,272 KB
testcase_42 AC 162 ms
22,144 KB
testcase_43 AC 163 ms
22,144 KB
testcase_44 AC 159 ms
22,272 KB
testcase_45 AC 157 ms
22,272 KB
testcase_46 AC 157 ms
22,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X,Y=map(int,input().split())
mod=998244353

DP=[0]*(3*10**5)

DP[0]=1

for i in range(1,3*10**5):
    DP[i]=(DP[i-1]+DP[i-3])%mod

k=abs(X-Y)

if X==1 or Y==1 or X==N or Y==N:
    print(DP[k-1])
else:
    if k-2<0:
        print(0)
    else:
        print(DP[k-2])
0