結果

問題 No.1620 Substring Sum
ユーザー ああいいああいい
提出日時 2021-12-28 18:30:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 201 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,080 KB
最終ジャッジ日時 2024-10-02 12:18:17
合計ジャッジ時間 4,495 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 214 ms
19,956 KB
testcase_05 AC 211 ms
19,956 KB
testcase_06 AC 212 ms
20,080 KB
testcase_07 AC 208 ms
19,936 KB
testcase_08 AC 211 ms
19,820 KB
testcase_09 AC 205 ms
19,680 KB
testcase_10 AC 207 ms
19,800 KB
testcase_11 AC 206 ms
19,524 KB
testcase_12 AC 88 ms
13,520 KB
testcase_13 AC 195 ms
19,080 KB
testcase_14 AC 200 ms
19,124 KB
testcase_15 AC 180 ms
18,432 KB
testcase_16 AC 137 ms
16,152 KB
testcase_17 AC 174 ms
18,004 KB
testcase_18 AC 30 ms
10,496 KB
testcase_19 AC 30 ms
10,624 KB
testcase_20 AC 212 ms
19,828 KB
testcase_21 AC 210 ms
20,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(map(int,list(input())))
P = 998244353

dp = [0] * len(S)
dp[0] = S[0]
now = 1
for i in range(1,len(S)):
    now = now * 2 % P
    dp[i] = 11 * dp[i-1] + now * S[i]
    dp[i] %= P
print(dp[-1])
0