結果

問題 No.1620 Substring Sum
ユーザー IgrmiIgrmi
提出日時 2021-07-22 22:34:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 155 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 67,624 KB
最終ジャッジ日時 2024-07-17 18:48:02
合計ジャッジ時間 4,317 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
S = input()
N = len(S)
Ans = 0
for i in range(N):
    Ans += int(S[i]) * pow(11, N - 1 - i, MOD) * pow(2, i, MOD)
    Ans %= MOD
print(Ans)
0