結果

問題 No.1620 Substring Sum
ユーザー 👑 rin204rin204
提出日時 2022-04-04 00:23:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 166 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 69,124 KB
最終ジャッジ日時 2024-11-24 09:09:10
合計ジャッジ時間 2,257 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,148 KB
testcase_01 AC 40 ms
52,052 KB
testcase_02 AC 36 ms
53,800 KB
testcase_03 AC 35 ms
52,356 KB
testcase_04 AC 47 ms
68,892 KB
testcase_05 AC 47 ms
69,124 KB
testcase_06 AC 47 ms
68,708 KB
testcase_07 AC 47 ms
68,468 KB
testcase_08 AC 48 ms
69,008 KB
testcase_09 AC 48 ms
68,288 KB
testcase_10 AC 50 ms
68,756 KB
testcase_11 AC 49 ms
68,440 KB
testcase_12 AC 43 ms
62,228 KB
testcase_13 AC 47 ms
68,132 KB
testcase_14 AC 48 ms
68,124 KB
testcase_15 AC 46 ms
66,992 KB
testcase_16 AC 46 ms
65,320 KB
testcase_17 AC 45 ms
67,788 KB
testcase_18 AC 36 ms
52,692 KB
testcase_19 AC 37 ms
52,228 KB
testcase_20 AC 47 ms
68,880 KB
testcase_21 AC 47 ms
68,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

S = input()
ans = 0
times = 1
for s in S:
    s = int(s)
    ans *= 11
    ans += s * times
    ans %= MOD
    times *= 2
    times %= MOD
print(ans)
0