結果

問題 No.1620 Substring Sum
ユーザー convexineqconvexineq
提出日時 2021-07-22 23:23:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 104 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 67,124 KB
最終ジャッジ日時 2024-07-17 20:15:25
合計ジャッジ時間 2,070 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,528 KB
testcase_01 AC 37 ms
53,596 KB
testcase_02 AC 38 ms
51,928 KB
testcase_03 AC 36 ms
53,016 KB
testcase_04 AC 47 ms
66,260 KB
testcase_05 AC 47 ms
66,272 KB
testcase_06 AC 46 ms
65,764 KB
testcase_07 AC 45 ms
66,368 KB
testcase_08 AC 47 ms
67,008 KB
testcase_09 AC 46 ms
66,304 KB
testcase_10 AC 47 ms
65,868 KB
testcase_11 AC 46 ms
65,624 KB
testcase_12 AC 42 ms
60,828 KB
testcase_13 AC 47 ms
65,540 KB
testcase_14 AC 45 ms
65,012 KB
testcase_15 AC 46 ms
65,400 KB
testcase_16 AC 43 ms
63,688 KB
testcase_17 AC 45 ms
64,932 KB
testcase_18 AC 37 ms
52,356 KB
testcase_19 AC 37 ms
52,252 KB
testcase_20 AC 46 ms
66,188 KB
testcase_21 AC 46 ms
67,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD,r,p = 998244353,0,1
for i in map(int,input()):
    r = (11*r + i*p)%MOD
    p = p*2%MOD
print(r%MOD)
0