結果

問題 No.2060 AND Sequence
ユーザー ntudantuda
提出日時 2022-09-14 21:37:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 54,044 KB
最終ジャッジ日時 2024-05-09 01:17:40
合計ジャッジ時間 3,678 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,684 KB
testcase_01 AC 37 ms
53,368 KB
testcase_02 AC 39 ms
52,860 KB
testcase_03 AC 38 ms
52,348 KB
testcase_04 AC 39 ms
52,392 KB
testcase_05 AC 40 ms
52,744 KB
testcase_06 AC 38 ms
52,772 KB
testcase_07 AC 39 ms
53,336 KB
testcase_08 AC 37 ms
52,792 KB
testcase_09 AC 37 ms
53,672 KB
testcase_10 AC 36 ms
52,820 KB
testcase_11 AC 37 ms
53,304 KB
testcase_12 AC 37 ms
53,280 KB
testcase_13 AC 37 ms
52,344 KB
testcase_14 AC 36 ms
53,252 KB
testcase_15 AC 37 ms
53,036 KB
testcase_16 AC 37 ms
52,964 KB
testcase_17 AC 36 ms
52,896 KB
testcase_18 AC 37 ms
52,356 KB
testcase_19 AC 37 ms
53,648 KB
testcase_20 AC 38 ms
53,444 KB
testcase_21 AC 37 ms
53,344 KB
testcase_22 AC 37 ms
53,384 KB
testcase_23 AC 37 ms
52,312 KB
testcase_24 AC 37 ms
53,748 KB
testcase_25 AC 38 ms
53,876 KB
testcase_26 AC 39 ms
52,888 KB
testcase_27 AC 39 ms
53,944 KB
testcase_28 AC 36 ms
52,852 KB
testcase_29 AC 39 ms
53,264 KB
testcase_30 AC 38 ms
53,812 KB
testcase_31 AC 38 ms
52,652 KB
testcase_32 AC 37 ms
53,012 KB
testcase_33 AC 37 ms
53,168 KB
testcase_34 AC 39 ms
53,812 KB
testcase_35 AC 38 ms
52,896 KB
testcase_36 AC 38 ms
52,648 KB
testcase_37 AC 38 ms
53,868 KB
testcase_38 AC 38 ms
53,380 KB
testcase_39 AC 38 ms
52,900 KB
testcase_40 AC 38 ms
54,044 KB
testcase_41 AC 39 ms
52,492 KB
testcase_42 AC 38 ms
52,672 KB
testcase_43 AC 38 ms
53,272 KB
testcase_44 AC 39 ms
52,528 KB
testcase_45 AC 39 ms
52,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
N,M = map(int,input().split())
bl = M.bit_length()
B = [[0] * (bl + 1) for _ in range(bl+1)]
B[0][0] = 1
for i in range(1,bl+1):
    for j in range(i+1):
        B[i][j] = B[i-1][j-1] + B[i-1][j]
for i in range(bl+1):
    B[i][1] += 1

BT = [0] * (bl+1)
k = 0
for i in reversed(range(bl+1)):
    if (M >> i) & 1:
        k += 1
        for j in range(i+1):
            BT[j+k] += B[i][j+1]
ans = 1
for i in range(bl+1):
    ans += BT[i] * pow(N,i,MOD)
    ans %= MOD
print(ans)

0