結果

問題 No.2679 MODice
ユーザー ThetaTheta
提出日時 2024-04-18 17:20:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 893 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 78,368 KB
最終ジャッジ日時 2024-10-10 10:38:35
合計ジャッジ時間 2,514 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
55,164 KB
testcase_01 AC 48 ms
55,376 KB
testcase_02 AC 46 ms
55,520 KB
testcase_03 AC 44 ms
54,932 KB
testcase_04 AC 45 ms
55,896 KB
testcase_05 AC 45 ms
55,984 KB
testcase_06 AC 97 ms
77,248 KB
testcase_07 AC 103 ms
77,252 KB
testcase_08 AC 93 ms
78,068 KB
testcase_09 AC 67 ms
70,420 KB
testcase_10 AC 68 ms
68,976 KB
testcase_11 AC 74 ms
71,296 KB
testcase_12 AC 103 ms
78,368 KB
testcase_13 AC 75 ms
71,416 KB
testcase_14 AC 84 ms
77,136 KB
testcase_15 AC 69 ms
71,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import cache
MOD = 998244353


@cache
def calc_possibility(n: int, k: int) -> int:
    if n == 1:
        return pow(6, MOD - 2, MOD)

    if n % 2 == 0:
        return sum(
            (calc_possibility(
                n //
                2,
                idx) *
             calc_possibility(
                n //
                2,
                (k -
                 idx) %
                6)) % MOD for idx in range(6)) % MOD

    if n % 2 == 1:
        return ((sum(calc_possibility(n - 1, idx) %
                MOD for idx in range(6)) % MOD) * pow(6, MOD - 2, MOD)) % MOD


def main():
    N, K = map(int, input().split())

    # N個の出目の総和を6で割った余りがKとなる確率
    # N/2個の出目の総和を6で割った余りがjとなる確率*(K-j)%6となる確率
    print(calc_possibility(N, K))


if __name__ == "__main__":
    main()
0