結果

問題 No.1620 Substring Sum
ユーザー AEnAEn
提出日時 2023-01-18 02:00:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 67,664 KB
最終ジャッジ日時 2024-06-11 05:37:23
合計ジャッジ時間 4,671 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,552 KB
testcase_01 AC 37 ms
53,436 KB
testcase_02 AC 36 ms
52,320 KB
testcase_03 AC 37 ms
52,348 KB
testcase_04 AC 200 ms
66,900 KB
testcase_05 AC 203 ms
66,424 KB
testcase_06 AC 203 ms
66,904 KB
testcase_07 AC 204 ms
66,552 KB
testcase_08 AC 209 ms
67,664 KB
testcase_09 AC 199 ms
66,356 KB
testcase_10 AC 202 ms
67,036 KB
testcase_11 AC 197 ms
66,244 KB
testcase_12 AC 88 ms
61,564 KB
testcase_13 AC 187 ms
65,408 KB
testcase_14 AC 194 ms
66,876 KB
testcase_15 AC 180 ms
65,952 KB
testcase_16 AC 137 ms
64,860 KB
testcase_17 AC 172 ms
66,396 KB
testcase_18 AC 38 ms
52,812 KB
testcase_19 AC 38 ms
52,824 KB
testcase_20 AC 202 ms
66,984 KB
testcase_21 AC 205 ms
66,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
N = len(S)
mod = 998244353

res = 0
for i in range(N):
    res += int(S[i])*pow(2,i,mod)*pow(11,N-i-1,mod)
    res %= mod
print(res)
0