結果

問題 No.2772 Appearing Even Times
ユーザー Abhishek ChoudharyAbhishek Choudhary
提出日時 2024-05-31 23:02:34
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 599 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 77,976 KB
最終ジャッジ日時 2024-05-31 23:02:41
合計ジャッジ時間 6,321 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
56,880 KB
testcase_01 AC 53 ms
66,600 KB
testcase_02 AC 92 ms
77,976 KB
testcase_03 AC 62 ms
73,332 KB
testcase_04 AC 62 ms
72,976 KB
testcase_05 AC 63 ms
73,156 KB
testcase_06 AC 67 ms
72,152 KB
testcase_07 AC 40 ms
53,612 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

sys.setrecursionlimit(10 ** 5)

n = input()

M = 998244353

cache = {}

def count(num, i, tight, nzseen, mask):
    if i >= len(num):
        return int(mask == 0 and nzseen)
    key = (i, tight, nzseen, mask)
    if key in cache:
        return cache[key]
    maxd = 9
    if tight:
        maxd = int(num[i])
    res = 0
    for d in range(maxd + 1):
        newnzseen = nzseen or d != 0
        res += count(num, i + 1, tight and d == maxd, newnzseen, mask ^ (1 << d) if newnzseen else mask)
        res %= M
    cache[key] = res
    return res
    
print(count(n, 0, True, False, 0))
0