結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,120 KB
testcase_01 AC 38 ms
52,276 KB
testcase_02 AC 36 ms
51,996 KB
testcase_03 AC 37 ms
52,488 KB
testcase_04 AC 36 ms
52,420 KB
testcase_05 AC 37 ms
52,684 KB
testcase_06 AC 37 ms
52,776 KB
testcase_07 AC 37 ms
52,484 KB
testcase_08 AC 37 ms
52,440 KB
testcase_09 AC 37 ms
53,332 KB
testcase_10 AC 37 ms
53,008 KB
testcase_11 AC 37 ms
52,396 KB
testcase_12 AC 38 ms
52,744 KB
testcase_13 AC 37 ms
52,368 KB
testcase_14 AC 38 ms
52,332 KB
testcase_15 AC 46 ms
52,136 KB
testcase_16 AC 38 ms
52,308 KB
testcase_17 AC 37 ms
52,444 KB
testcase_18 AC 38 ms
52,960 KB
testcase_19 AC 38 ms
53,380 KB
testcase_20 AC 1,451 ms
76,308 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