結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー FromBooskaFromBooska
提出日時 2024-05-10 22:57:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 467 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 76,172 KB
最終ジャッジ日時 2024-12-20 07:06:43
合計ジャッジ時間 4,689 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,120 KB
testcase_01 AC 36 ms
52,148 KB
testcase_02 AC 36 ms
52,488 KB
testcase_03 AC 36 ms
52,112 KB
testcase_04 AC 37 ms
53,348 KB
testcase_05 AC 39 ms
53,116 KB
testcase_06 AC 38 ms
53,400 KB
testcase_07 AC 39 ms
53,672 KB
testcase_08 AC 37 ms
52,556 KB
testcase_09 AC 38 ms
52,580 KB
testcase_10 AC 37 ms
52,876 KB
testcase_11 AC 36 ms
52,944 KB
testcase_12 AC 37 ms
52,700 KB
testcase_13 AC 36 ms
52,768 KB
testcase_14 AC 40 ms
52,836 KB
testcase_15 AC 38 ms
52,016 KB
testcase_16 AC 38 ms
51,812 KB
testcase_17 AC 38 ms
53,532 KB
testcase_18 AC 39 ms
52,680 KB
testcase_19 AC 40 ms
52,660 KB
testcase_20 AC 297 ms
75,908 KB
testcase_21 AC 455 ms
76,060 KB
testcase_22 AC 467 ms
76,172 KB
testcase_23 AC 452 ms
75,592 KB
testcase_24 AC 449 ms
75,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 愚直では間に合うのか、分母はだいじょうぶか

mod = 998244353
inv = pow(25, mod-2, mod)

T = int(input())
for t in range(T):
    l = int(input())
    ans = (26*(pow(26, l, mod)-1)*inv)%mod
    print(ans)
0