結果

問題 No.1620 Substring Sum
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-07-22 22:23:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 335 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 85,960 KB
最終ジャッジ日時 2024-07-17 18:25:51
合計ジャッジ時間 3,366 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,248 KB
testcase_01 AC 38 ms
52,976 KB
testcase_02 AC 38 ms
52,120 KB
testcase_03 AC 38 ms
52,240 KB
testcase_04 AC 146 ms
84,864 KB
testcase_05 AC 146 ms
84,424 KB
testcase_06 AC 146 ms
85,792 KB
testcase_07 AC 145 ms
84,976 KB
testcase_08 AC 145 ms
85,444 KB
testcase_09 AC 141 ms
84,068 KB
testcase_10 AC 145 ms
84,912 KB
testcase_11 AC 145 ms
84,460 KB
testcase_12 AC 75 ms
67,272 KB
testcase_13 AC 138 ms
82,636 KB
testcase_14 AC 139 ms
82,612 KB
testcase_15 AC 126 ms
79,440 KB
testcase_16 AC 101 ms
75,800 KB
testcase_17 AC 124 ms
80,648 KB
testcase_18 AC 38 ms
51,904 KB
testcase_19 AC 38 ms
52,536 KB
testcase_20 AC 146 ms
85,960 KB
testcase_21 AC 146 ms
84,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

寄与を考える

二乗なら簡単だが…





"""

import sys
from sys import stdin

lsum = 1

S = list(map(int,list(stdin.readline()[:-1])))

S.reverse()
N = len(S)


ans = 0
mod = 998244353

for i in range(N):

    ans += lsum * S[i] * pow(2,N-1-i,mod)
    ans %= mod

    lsum += lsum * 10
    lsum %= mod

print (ans)
0