結果

問題 No.2867 NOT FOUND 404 Again
ユーザー vwxyzvwxyz
提出日時 2024-09-07 00:26:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,050 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 199,412 KB
最終ジャッジ日時 2024-09-07 00:26:35
合計ジャッジ時間 25,056 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,240 KB
testcase_01 AC 37 ms
52,748 KB
testcase_02 AC 37 ms
52,644 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 1,110 ms
199,040 KB
testcase_19 AC 1,687 ms
199,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=list(map(int,list(input())))
mod=998244353
dp=[[0]*3 for b in range(2)]
dp[1][0]=1
def next_i(i,x):
    if i==2 and x==4:
        retu=3
    elif i==1 and x==0:
        retu=2
    elif x==4:
        retu=1
    else:
        retu=0
    return retu
for i,n in enumerate(N):
    prev=dp
    dp=[[0]*3 for b in range(2)]
    for x in range(10):
        for i0 in range(3):
            i1=next_i(i0,x)
            if i1==3:
                continue
            dp[0][i1]+=prev[0][i0]
            dp[0][i1]%=mod
    if i:
        for x in range(1,10):
            i1=next_i(0,x)
            if i1==3:
                continue
            dp[0][i1]+=1
            dp[0][i1]%=mod
    for x in range(0 if i else 1,n):
        for i0 in range(3):
            i1=next_i(i0,x)
            if i1==3:
                continue
            dp[0][i1]+=prev[1][i0]
            dp[0][i1]%=mod
    for i0 in range(3):
        i1=next_i(i0,n)
        if i1==3:
            continue
        dp[1][i1]+=prev[1][i0]
        dp[1][i1]%=mod
ans=(sum(dp[0])+1)%mod
print(ans)
0