結果

問題 No.1620 Substring Sum
ユーザー googol_S0googol_S0
提出日時 2021-07-22 21:32:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 111 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 66,304 KB
最終ジャッジ日時 2024-07-17 16:39:34
合計ジャッジ時間 3,115 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 138 ms
65,792 KB
testcase_05 AC 134 ms
66,048 KB
testcase_06 AC 130 ms
65,792 KB
testcase_07 AC 128 ms
66,304 KB
testcase_08 AC 129 ms
66,304 KB
testcase_09 AC 126 ms
65,920 KB
testcase_10 AC 128 ms
66,048 KB
testcase_11 AC 126 ms
66,048 KB
testcase_12 AC 67 ms
61,184 KB
testcase_13 AC 120 ms
65,024 KB
testcase_14 AC 122 ms
65,664 KB
testcase_15 AC 111 ms
64,512 KB
testcase_16 AC 91 ms
63,168 KB
testcase_17 AC 111 ms
64,640 KB
testcase_18 AC 37 ms
51,584 KB
testcase_19 AC 37 ms
51,584 KB
testcase_20 AC 129 ms
65,920 KB
testcase_21 AC 128 ms
66,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
ANS=0
mod=998244353
for i in range(len(S)):
  ANS=ANS*11+int(S[i])*pow(2,i,mod)
  ANS%=mod
print(ANS)
0