結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,052 KB
testcase_01 AC 36 ms
52,408 KB
testcase_02 AC 36 ms
52,060 KB
testcase_03 AC 35 ms
53,180 KB
testcase_04 AC 32 ms
52,896 KB
testcase_05 AC 33 ms
52,264 KB
testcase_06 AC 34 ms
52,760 KB
testcase_07 AC 34 ms
52,028 KB
testcase_08 AC 35 ms
52,332 KB
testcase_09 AC 33 ms
51,824 KB
testcase_10 AC 33 ms
53,036 KB
testcase_11 AC 34 ms
52,500 KB
testcase_12 AC 35 ms
53,220 KB
testcase_13 AC 34 ms
52,992 KB
testcase_14 AC 34 ms
51,868 KB
testcase_15 AC 33 ms
52,836 KB
testcase_16 AC 34 ms
53,072 KB
testcase_17 AC 34 ms
52,932 KB
testcase_18 AC 35 ms
52,268 KB
testcase_19 AC 36 ms
52,400 KB
testcase_20 AC 290 ms
76,232 KB
testcase_21 AC 437 ms
76,304 KB
testcase_22 AC 435 ms
76,344 KB
testcase_23 AC 432 ms
76,352 KB
testcase_24 AC 421 ms
76,532 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