結果

問題 No.1620 Substring Sum
ユーザー vltmttvltmtt
提出日時 2021-07-22 22:52:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 151 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 68,300 KB
最終ジャッジ日時 2024-07-17 19:20:18
合計ジャッジ時間 4,253 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,084 KB
testcase_01 AC 37 ms
52,188 KB
testcase_02 AC 37 ms
52,636 KB
testcase_03 AC 37 ms
51,828 KB
testcase_04 AC 209 ms
66,772 KB
testcase_05 AC 212 ms
66,408 KB
testcase_06 AC 213 ms
67,168 KB
testcase_07 AC 211 ms
68,300 KB
testcase_08 AC 211 ms
66,280 KB
testcase_09 AC 209 ms
66,348 KB
testcase_10 AC 208 ms
67,604 KB
testcase_11 AC 207 ms
66,156 KB
testcase_12 AC 92 ms
61,768 KB
testcase_13 AC 195 ms
66,696 KB
testcase_14 AC 199 ms
66,924 KB
testcase_15 AC 180 ms
66,664 KB
testcase_16 AC 136 ms
64,912 KB
testcase_17 AC 174 ms
65,272 KB
testcase_18 AC 37 ms
52,608 KB
testcase_19 AC 36 ms
53,284 KB
testcase_20 AC 210 ms
67,352 KB
testcase_21 AC 211 ms
66,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
ans = 0
mod = 998244353
n = len(s)
for i in range(n):
  x = int(s[i])
  ans += pow(2,i,mod)*pow(11,n-i-1,mod)*x%mod
  ans %= mod
print(ans)
0