結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,004 KB
testcase_01 AC 41 ms
52,768 KB
testcase_02 AC 39 ms
52,904 KB
testcase_03 AC 40 ms
51,876 KB
testcase_04 AC 41 ms
52,356 KB
testcase_05 AC 40 ms
52,124 KB
testcase_06 AC 41 ms
52,140 KB
testcase_07 AC 40 ms
52,828 KB
testcase_08 AC 41 ms
51,940 KB
testcase_09 AC 39 ms
52,828 KB
testcase_10 AC 39 ms
52,632 KB
testcase_11 AC 39 ms
52,552 KB
testcase_12 AC 39 ms
53,084 KB
testcase_13 AC 39 ms
53,096 KB
testcase_14 AC 39 ms
52,872 KB
testcase_15 AC 38 ms
52,960 KB
testcase_16 AC 39 ms
52,756 KB
testcase_17 AC 40 ms
53,284 KB
testcase_18 AC 41 ms
52,944 KB
testcase_19 AC 39 ms
52,216 KB
testcase_20 AC 328 ms
76,044 KB
testcase_21 AC 489 ms
76,404 KB
testcase_22 AC 484 ms
76,292 KB
testcase_23 AC 500 ms
76,096 KB
testcase_24 AC 494 ms
76,516 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