結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー detteiuudetteiuu
提出日時 2024-05-10 22:48:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 429 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 76,456 KB
最終ジャッジ日時 2024-05-10 22:49:03
合計ジャッジ時間 11,197 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,172 KB
testcase_01 AC 37 ms
53,760 KB
testcase_02 AC 37 ms
52,552 KB
testcase_03 AC 37 ms
52,308 KB
testcase_04 AC 41 ms
51,940 KB
testcase_05 AC 36 ms
53,200 KB
testcase_06 AC 38 ms
52,204 KB
testcase_07 AC 37 ms
52,756 KB
testcase_08 AC 38 ms
53,004 KB
testcase_09 AC 44 ms
51,944 KB
testcase_10 AC 37 ms
52,736 KB
testcase_11 AC 40 ms
53,596 KB
testcase_12 AC 39 ms
52,580 KB
testcase_13 AC 39 ms
52,548 KB
testcase_14 AC 38 ms
53,416 KB
testcase_15 AC 38 ms
52,540 KB
testcase_16 AC 38 ms
52,584 KB
testcase_17 AC 38 ms
52,676 KB
testcase_18 AC 37 ms
52,704 KB
testcase_19 AC 38 ms
52,756 KB
testcase_20 AC 1,125 ms
76,376 KB
testcase_21 AC 1,827 ms
76,432 KB
testcase_22 AC 1,870 ms
76,456 KB
testcase_23 AC 1,838 ms
75,956 KB
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

MOD = 998244353
A = []
for i in range(60):
    if i == 0:
        A.append(26)
    else:
        A.append((A[-1]*pow(26, 2**(i-1), MOD)+A[-1])%MOD)

for _ in range(T):
    L = int(input())
    ans = 0
    for j in range(60):
        if 1<<j & L:
            if j >= 1:
                ans *= pow(26, pow(2, j, MOD-1), MOD)
                ans %= MOD
            ans += A[j]
            ans %= MOD
    print(ans)
0