結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,344 KB
testcase_01 AC 38 ms
52,424 KB
testcase_02 AC 39 ms
53,800 KB
testcase_03 AC 40 ms
53,532 KB
testcase_04 AC 39 ms
53,008 KB
testcase_05 AC 39 ms
52,192 KB
testcase_06 AC 38 ms
52,904 KB
testcase_07 AC 38 ms
53,344 KB
testcase_08 AC 39 ms
52,652 KB
testcase_09 AC 38 ms
52,624 KB
testcase_10 AC 39 ms
52,324 KB
testcase_11 AC 39 ms
52,344 KB
testcase_12 AC 38 ms
53,148 KB
testcase_13 AC 39 ms
52,948 KB
testcase_14 AC 38 ms
53,008 KB
testcase_15 AC 36 ms
52,336 KB
testcase_16 AC 38 ms
52,160 KB
testcase_17 AC 39 ms
53,112 KB
testcase_18 AC 38 ms
53,216 KB
testcase_19 AC 38 ms
52,624 KB
testcase_20 AC 1,084 ms
76,392 KB
testcase_21 AC 1,806 ms
76,236 KB
testcase_22 AC 1,834 ms
76,312 KB
testcase_23 AC 1,819 ms
76,232 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