結果

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

テストケース

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

ソースコード

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] * 60
Power26[0] = 26
for i in range(1,60):
    Power26[i] = Power26[i-1] * Power26[i-1] % mod
T = int(input())
c = Power(25,mod-2)
for t in range(T):
    L = int(input())
    ans = 1
    for i in range(60):
        if (L+1) < (1<<i) : break
        if (L+1) & (1<<i) : ans *= Power26[i] % mod 
    ans -= 26
    if ans < 0 : ans += mod
    ans = ans * c % mod
    print(ans)
0