結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
17,824 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 32 ms
10,752 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 31 ms
10,624 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 32 ms
10,880 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] * 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 = (Power(26,L+1) - 26)
    ans = ans * Power(25,mod-2) % mod
    print(ans)

0