結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー detteiuudetteiuu
提出日時 2024-05-10 23:36:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 553 ms / 2,000 ms
コード長 186 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 76,596 KB
最終ジャッジ日時 2024-05-10 23:36:59
合計ジャッジ時間 4,936 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,156 KB
testcase_01 AC 39 ms
53,352 KB
testcase_02 AC 38 ms
52,052 KB
testcase_03 AC 38 ms
53,380 KB
testcase_04 AC 37 ms
52,612 KB
testcase_05 AC 38 ms
53,896 KB
testcase_06 AC 42 ms
51,936 KB
testcase_07 AC 38 ms
53,596 KB
testcase_08 AC 38 ms
52,740 KB
testcase_09 AC 39 ms
52,328 KB
testcase_10 AC 38 ms
53,480 KB
testcase_11 AC 38 ms
51,760 KB
testcase_12 AC 38 ms
52,852 KB
testcase_13 AC 46 ms
52,360 KB
testcase_14 AC 38 ms
52,668 KB
testcase_15 AC 38 ms
53,296 KB
testcase_16 AC 37 ms
52,068 KB
testcase_17 AC 38 ms
53,004 KB
testcase_18 AC 37 ms
52,340 KB
testcase_19 AC 37 ms
52,824 KB
testcase_20 AC 348 ms
76,476 KB
testcase_21 AC 553 ms
76,596 KB
testcase_22 AC 533 ms
76,520 KB
testcase_23 AC 537 ms
76,480 KB
testcase_24 AC 521 ms
76,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

def inverse(n, d):
    return n * pow(d, MOD-2, MOD) % MOD

MOD = 998244353
for _ in range(T):
    L = int(input())
    print((pow(26, L+1, MOD)-26)*inverse(1, 25)%MOD)
0