結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー たいたい
提出日時 2024-05-11 12:46:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 600 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-11 12:47:01
合計ジャッジ時間 10,293 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 25 ms
10,752 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353

#aのb乗をmで割った余りを出力する
def Power(a:int,b:int,m:int=mod)->int:
    ans = 1
    i = 0
    while True:
        w = (1<<i)
        if b < w : break
        if b & w : ans = (ans * a) % m
        a = (a * a) % m
        i += 1
    return ans

Power26 = [0] * 30
for i in range(30):
    Power26[i] = (Power(26,(1<<i)+1) - 26)
    Power26[i] = Power26[i] * Power(25,mod-2) % mod
T = int(input())
for t in range(T):
    L = int(input())
    ans = 0
    for i in range(30):
        if L < (1<<i) : break
        if L & (1<<i) : ans += Power26[i] % mod
    print(ans)

0