結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,924 KB
testcase_01 AC 32 ms
51,828 KB
testcase_02 AC 32 ms
51,828 KB
testcase_03 AC 32 ms
53,528 KB
testcase_04 AC 192 ms
67,624 KB
testcase_05 AC 201 ms
66,588 KB
testcase_06 AC 198 ms
66,708 KB
testcase_07 AC 188 ms
66,672 KB
testcase_08 AC 207 ms
67,532 KB
testcase_09 AC 183 ms
66,804 KB
testcase_10 AC 190 ms
65,860 KB
testcase_11 AC 188 ms
66,296 KB
testcase_12 AC 82 ms
61,740 KB
testcase_13 AC 174 ms
65,752 KB
testcase_14 AC 179 ms
66,536 KB
testcase_15 AC 159 ms
65,000 KB
testcase_16 AC 123 ms
63,716 KB
testcase_17 AC 157 ms
66,348 KB
testcase_18 AC 33 ms
52,344 KB
testcase_19 AC 33 ms
53,348 KB
testcase_20 AC 198 ms
66,736 KB
testcase_21 AC 200 ms
66,184 KB
権限があれば一括ダウンロードができます

ソースコード

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