結果

問題 No.2772 Appearing Even Times
ユーザー ShirotsumeShirotsume
提出日時 2024-05-31 22:18:10
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,267 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 178,360 KB
最終ジャッジ日時 2024-05-31 22:18:18
合計ジャッジ時間 7,118 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
178,360 KB
testcase_01 AC 132 ms
79,444 KB
testcase_02 AC 148 ms
79,604 KB
testcase_03 AC 140 ms
79,904 KB
testcase_04 AC 131 ms
79,400 KB
testcase_05 AC 149 ms
79,376 KB
testcase_06 AC 141 ms
79,204 KB
testcase_07 AC 89 ms
78,940 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353
import string

n = input()
#桁dp
#dp
dp = [[[0] * (1024) for _ in range(2)] for _ in range(2)]

dp[0][0][0] = 1


for i in range(len(n)):
    e = [[[0] * (1024) for _ in range(2)] for _ in range(2)]
    for lessflag in range(2):
        for zeroflag in range(2):
            for bit in range(1024):
                for x in range(10):
                    if lessflag == 0 and x > int(n[i]):
                        continue
                    tlessflag = lessflag | (x < int(n[i]))
                    tzeroflag = zeroflag | (x > 0)
                    if tzeroflag == 0:
                        e[tlessflag][tzeroflag][bit] += dp[lessflag][zeroflag][bit]
                        e[tlessflag][tzeroflag][bit] %= mod
                    else:
                        e[tlessflag][tzeroflag][bit ^ (1 << x)] += dp[lessflag][zeroflag][bit]
                        e[tlessflag][tzeroflag][bit ^ (1 << x)] %= mod
    
    dp = e
c = 0
for v in n:
    c ^= 1 << int(v)
if c == 0:
    dp[1][1][0] += 1
print(dp[1][1][0] % mod)
0