結果

問題 No.1620 Substring Sum
ユーザー lloyzlloyz
提出日時 2023-11-15 00:54:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 85,488 KB
最終ジャッジ日時 2024-09-26 04:26:07
合計ジャッジ時間 5,050 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 264 ms
84,224 KB
testcase_05 AC 228 ms
85,488 KB
testcase_06 AC 228 ms
84,224 KB
testcase_07 AC 227 ms
84,096 KB
testcase_08 AC 229 ms
84,480 KB
testcase_09 AC 222 ms
83,712 KB
testcase_10 AC 227 ms
84,352 KB
testcase_11 AC 225 ms
83,968 KB
testcase_12 AC 99 ms
67,072 KB
testcase_13 AC 210 ms
82,048 KB
testcase_14 AC 216 ms
81,920 KB
testcase_15 AC 193 ms
79,872 KB
testcase_16 AC 150 ms
74,240 KB
testcase_17 AC 189 ms
78,976 KB
testcase_18 AC 38 ms
51,712 KB
testcase_19 AC 39 ms
52,096 KB
testcase_20 AC 230 ms
84,352 KB
testcase_21 AC 238 ms
84,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L = list(map(int, list(input())))
mod = 998244353

n = len(L)
ans = 0
for i in range(n):
    x = L[n - i - 1]
    # pow(11, i, mod)は数字xより右側
    # pow(2, n - i - 1, mod)は数字xより左側
    ans += x * pow(11, i, mod) % mod * pow(2, n - i - 1, mod) % mod
    ans %= mod
print(ans)
0