結果

問題 No.1620 Substring Sum
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-07-24 13:21:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,620 KB
最終ジャッジ日時 2024-07-19 18:56:26
合計ジャッジ時間 5,664 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 24 ms
10,624 KB
testcase_03 AC 26 ms
10,496 KB
testcase_04 AC 302 ms
26,616 KB
testcase_05 AC 289 ms
26,488 KB
testcase_06 AC 295 ms
26,620 KB
testcase_07 AC 301 ms
26,404 KB
testcase_08 AC 293 ms
26,492 KB
testcase_09 AC 280 ms
25,912 KB
testcase_10 AC 294 ms
26,144 KB
testcase_11 AC 290 ms
26,156 KB
testcase_12 AC 117 ms
15,784 KB
testcase_13 AC 262 ms
25,104 KB
testcase_14 AC 268 ms
25,424 KB
testcase_15 AC 246 ms
23,764 KB
testcase_16 AC 184 ms
20,096 KB
testcase_17 AC 230 ms
23,092 KB
testcase_18 AC 25 ms
10,496 KB
testcase_19 AC 26 ms
10,496 KB
testcase_20 AC 299 ms
26,488 KB
testcase_21 AC 307 ms
26,492 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