結果

問題 No.1620 Substring Sum
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-07-24 13:21:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 901 ms
コンパイル使用メモリ 10,496 KB
実行使用メモリ 24,000 KB
最終ジャッジ日時 2023-09-27 01:16:11
合計ジャッジ時間 6,992 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,736 KB
testcase_01 AC 15 ms
7,812 KB
testcase_02 AC 14 ms
7,768 KB
testcase_03 AC 15 ms
7,872 KB
testcase_04 AC 272 ms
23,796 KB
testcase_05 AC 275 ms
23,828 KB
testcase_06 AC 266 ms
24,000 KB
testcase_07 AC 272 ms
23,804 KB
testcase_08 AC 270 ms
23,736 KB
testcase_09 AC 263 ms
23,340 KB
testcase_10 AC 268 ms
23,628 KB
testcase_11 AC 262 ms
23,392 KB
testcase_12 AC 99 ms
13,356 KB
testcase_13 AC 244 ms
22,432 KB
testcase_14 AC 252 ms
22,912 KB
testcase_15 AC 223 ms
21,004 KB
testcase_16 AC 170 ms
17,300 KB
testcase_17 AC 216 ms
20,612 KB
testcase_18 AC 15 ms
7,760 KB
testcase_19 AC 15 ms
7,900 KB
testcase_20 AC 277 ms
23,924 KB
testcase_21 AC 277 ms
23,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353

s = input()
n = len(s)

b2, b11 = [1], [1]
for i in range(n):
    b2.append(b2[-1] * 2 % mod)
    b11.append(b11[-1] * 11 % mod)
ans = 0
for i in range(n):
    ans += b2[i] * b11[n - i - 1] * int(s[i])
    ans %= mod
print(ans)
0