結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,884 KB
testcase_01 AC 39 ms
52,972 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 39 ms
52,840 KB
testcase_04 AC 39 ms
52,324 KB
testcase_05 AC 38 ms
52,240 KB
testcase_06 AC 38 ms
53,380 KB
testcase_07 AC 39 ms
53,228 KB
testcase_08 AC 39 ms
52,088 KB
testcase_09 AC 39 ms
52,484 KB
testcase_10 AC 39 ms
52,880 KB
testcase_11 AC 38 ms
52,736 KB
testcase_12 AC 41 ms
52,628 KB
testcase_13 AC 38 ms
52,692 KB
testcase_14 AC 38 ms
52,620 KB
testcase_15 AC 39 ms
53,040 KB
testcase_16 AC 39 ms
52,276 KB
testcase_17 AC 39 ms
53,104 KB
testcase_18 AC 41 ms
53,648 KB
testcase_19 AC 43 ms
52,636 KB
testcase_20 AC 1,469 ms
76,112 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
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())
    SUM = 0
    ans = 0
    for j in range(60):
        if 1<<j & L:
            ans += A[j]*pow(26, SUM, MOD)
            ans %= MOD
            SUM += 2**j
    print(ans)
0