結果

問題 No.2772 Appearing Even Times
ユーザー 👑 binapbinap
提出日時 2024-05-27 20:27:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,298 ms / 4,000 ms
コード長 964 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 83,408 KB
最終ジャッジ日時 2024-05-28 05:50:34
合計ジャッジ時間 18,139 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
63,256 KB
testcase_01 AC 40 ms
62,236 KB
testcase_02 AC 45 ms
66,312 KB
testcase_03 AC 44 ms
64,540 KB
testcase_04 AC 44 ms
62,592 KB
testcase_05 AC 44 ms
63,392 KB
testcase_06 AC 43 ms
63,052 KB
testcase_07 AC 36 ms
52,680 KB
testcase_08 AC 1,694 ms
79,368 KB
testcase_09 AC 1,384 ms
78,416 KB
testcase_10 AC 46 ms
61,832 KB
testcase_11 AC 44 ms
63,368 KB
testcase_12 AC 2,155 ms
81,836 KB
testcase_13 AC 1,131 ms
79,488 KB
testcase_14 AC 1,144 ms
79,304 KB
testcase_15 AC 1,124 ms
79,184 KB
testcase_16 AC 1,171 ms
79,236 KB
testcase_17 AC 1,165 ms
79,092 KB
testcase_18 AC 1,143 ms
79,032 KB
testcase_19 AC 2,298 ms
83,408 KB
testcase_20 AC 1,143 ms
78,416 KB
testcase_21 AC 1,190 ms
79,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

def solve(s):
    n = len(s)
    equal = [0] * (1 << 10)
    small = [0] * (1 << 10)
    
    num = int(s[0])
    for x in range(1, num):
        small[1 << x] += 1
    equal[1 << num] += 1
    
    for i in range(1, n):
        equal_old = equal[:]
        small_old = small[:]
        equal = [0] * (1 << 10)
        small = [0] * (1 << 10)
        
        num = int(s[i])
        for bit in range(1 << 10):
            for x in range(num):
                small[bit ^ (1 << x)] = (small[bit ^ (1 << x)] + equal_old[bit]) % MOD
            equal[bit ^ (1 << num)] = (equal[bit ^ (1 << num)] + equal_old[bit]) % MOD
            for x in range(10):
                small[bit ^ (1 << x)] = (small[bit ^ (1 << x)] + small_old[bit]) % MOD
        
        for x in range(1, 10):
            small[1 << x] = (small[1 << x] + 1) % MOD
    
    return (equal[0] + small[0]) % MOD

if __name__ == "__main__":
    s = input().strip()
    print(solve(s))
0