結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,092 KB
testcase_01 AC 33 ms
53,096 KB
testcase_02 AC 33 ms
53,564 KB
testcase_03 AC 37 ms
52,592 KB
testcase_04 AC 36 ms
52,868 KB
testcase_05 AC 34 ms
52,748 KB
testcase_06 AC 33 ms
52,740 KB
testcase_07 AC 34 ms
52,684 KB
testcase_08 AC 37 ms
53,356 KB
testcase_09 AC 34 ms
52,748 KB
testcase_10 AC 34 ms
52,128 KB
testcase_11 AC 35 ms
52,416 KB
testcase_12 AC 35 ms
52,328 KB
testcase_13 AC 33 ms
52,992 KB
testcase_14 AC 33 ms
53,436 KB
testcase_15 AC 34 ms
53,240 KB
testcase_16 AC 33 ms
53,272 KB
testcase_17 AC 34 ms
52,948 KB
testcase_18 AC 35 ms
52,468 KB
testcase_19 AC 33 ms
52,636 KB
testcase_20 AC 33 ms
53,840 KB
testcase_21 AC 33 ms
53,852 KB
testcase_22 AC 33 ms
54,040 KB
testcase_23 AC 34 ms
53,412 KB
testcase_24 AC 33 ms
53,204 KB
testcase_25 AC 34 ms
53,636 KB
testcase_26 AC 34 ms
53,360 KB
testcase_27 AC 34 ms
53,336 KB
testcase_28 AC 35 ms
52,632 KB
testcase_29 AC 34 ms
54,188 KB
testcase_30 AC 33 ms
53,112 KB
testcase_31 AC 33 ms
53,492 KB
testcase_32 AC 35 ms
52,496 KB
testcase_33 AC 33 ms
52,608 KB
testcase_34 AC 33 ms
53,196 KB
testcase_35 AC 32 ms
53,064 KB
testcase_36 AC 35 ms
53,100 KB
testcase_37 AC 34 ms
54,444 KB
testcase_38 AC 33 ms
54,404 KB
testcase_39 AC 34 ms
52,876 KB
testcase_40 AC 33 ms
52,652 KB
testcase_41 AC 33 ms
52,988 KB
testcase_42 AC 33 ms
53,016 KB
testcase_43 AC 33 ms
53,384 KB
testcase_44 AC 34 ms
53,244 KB
testcase_45 AC 34 ms
52,332 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