結果

問題 No.1620 Substring Sum
ユーザー brthyyjpbrthyyjp
提出日時 2021-09-13 10:25:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 89,472 KB
最終ジャッジ日時 2024-06-25 09:12:57
合計ジャッジ時間 2,622 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
73,984 KB
testcase_01 AC 64 ms
74,240 KB
testcase_02 AC 68 ms
74,240 KB
testcase_03 AC 67 ms
74,240 KB
testcase_04 AC 77 ms
89,088 KB
testcase_05 AC 76 ms
89,216 KB
testcase_06 AC 76 ms
89,472 KB
testcase_07 AC 76 ms
88,832 KB
testcase_08 AC 77 ms
89,216 KB
testcase_09 AC 75 ms
88,704 KB
testcase_10 AC 77 ms
89,088 KB
testcase_11 AC 75 ms
89,216 KB
testcase_12 AC 72 ms
80,384 KB
testcase_13 AC 75 ms
88,192 KB
testcase_14 AC 75 ms
88,448 KB
testcase_15 AC 75 ms
86,784 KB
testcase_16 AC 74 ms
83,456 KB
testcase_17 AC 75 ms
86,528 KB
testcase_18 AC 65 ms
74,624 KB
testcase_19 AC 66 ms
73,984 KB
testcase_20 AC 75 ms
76,800 KB
testcase_21 AC 72 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = 10**6
mod = 998244353

table = [0]*N
table[0] = 1
for i in range(1, N):
    table[i] = table[i-1]*11
    table[i] %= mod

table2 = [0]*N
table2[0] = 1
for i in range(1, N):
    table2[i] = table2[i-1]*2
    table2[i] %= mod

s = str(input())
n = len(s)
ans = 0
for i, c in enumerate(s):
    ans += int(c)*table[n-1-i]*table2[i]
    ans %= mod
print(ans)
0