結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー たいたい
提出日時 2024-05-11 14:03:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 469 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,860 KB
実行使用メモリ 76,568 KB
最終ジャッジ日時 2024-05-11 14:03:17
合計ジャッジ時間 4,625 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,412 KB
testcase_01 AC 32 ms
53,748 KB
testcase_02 AC 32 ms
52,812 KB
testcase_03 AC 36 ms
52,264 KB
testcase_04 AC 34 ms
53,560 KB
testcase_05 AC 34 ms
53,280 KB
testcase_06 AC 33 ms
52,940 KB
testcase_07 AC 33 ms
53,256 KB
testcase_08 AC 33 ms
52,736 KB
testcase_09 AC 33 ms
52,616 KB
testcase_10 AC 33 ms
52,472 KB
testcase_11 AC 46 ms
52,528 KB
testcase_12 AC 34 ms
53,020 KB
testcase_13 AC 33 ms
53,308 KB
testcase_14 AC 34 ms
52,596 KB
testcase_15 AC 33 ms
53,088 KB
testcase_16 AC 34 ms
52,404 KB
testcase_17 AC 33 ms
53,060 KB
testcase_18 AC 34 ms
52,124 KB
testcase_19 AC 34 ms
53,404 KB
testcase_20 AC 297 ms
76,392 KB
testcase_21 AC 469 ms
76,232 KB
testcase_22 AC 440 ms
76,044 KB
testcase_23 AC 433 ms
76,452 KB
testcase_24 AC 435 ms
76,568 KB
権限があれば一括ダウンロードができます

ソースコード

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

T = int(input())
c = Power(25,mod-2)
for t in range(T):
    L = int(input())
    ans = Power(26,L+1)
    ans -= 26
    if ans < 0 : ans += mod
    ans = ans * c % mod
    print(ans)
0