結果

問題 No.1620 Substring Sum
ユーザー qibqib
提出日時 2023-03-09 17:17:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 82,780 KB
実行使用メモリ 89,596 KB
最終ジャッジ日時 2024-09-18 02:54:26
合計ジャッジ時間 2,133 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,492 KB
testcase_01 AC 33 ms
53,016 KB
testcase_02 AC 32 ms
52,176 KB
testcase_03 AC 36 ms
52,012 KB
testcase_04 AC 60 ms
88,780 KB
testcase_05 AC 62 ms
89,056 KB
testcase_06 AC 65 ms
89,548 KB
testcase_07 AC 61 ms
89,232 KB
testcase_08 AC 60 ms
88,308 KB
testcase_09 AC 60 ms
89,036 KB
testcase_10 AC 60 ms
88,424 KB
testcase_11 AC 60 ms
88,864 KB
testcase_12 AC 45 ms
70,272 KB
testcase_13 AC 58 ms
86,332 KB
testcase_14 AC 58 ms
86,468 KB
testcase_15 AC 57 ms
84,120 KB
testcase_16 AC 51 ms
77,320 KB
testcase_17 AC 54 ms
84,468 KB
testcase_18 AC 32 ms
53,140 KB
testcase_19 AC 30 ms
52,884 KB
testcase_20 AC 60 ms
89,596 KB
testcase_21 AC 60 ms
88,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

s = list(map(int, list(input())))

n = len(s)
pow2 = [1 for _ in range(n + 1)]
pow11 = [1 for _ in range(n + 1)]
for i in range(1, n + 1):
  pow2[i] = (pow2[i - 1] * 2) % MOD
  pow11[i] = (pow11[i - 1] * 11) % MOD

ans = 0
for i in range(n):
  ans = (ans + s[i] * pow2[i] * pow11[n - 1 - i]) % MOD

print(ans)
0