結果

問題 No.1620 Substring Sum
ユーザー merlinmerlin
提出日時 2021-07-23 03:16:22
言語 Java
(openjdk 23)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 653 bytes
コンパイル時間 2,400 ms
コンパイル使用メモリ 74,324 KB
実行使用メモリ 44,212 KB
最終ジャッジ日時 2024-07-18 00:30:09
合計ジャッジ時間 5,670 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,816 KB
testcase_01 AC 51 ms
36,940 KB
testcase_02 AC 52 ms
36,656 KB
testcase_03 AC 51 ms
36,928 KB
testcase_04 AC 120 ms
43,360 KB
testcase_05 AC 132 ms
44,212 KB
testcase_06 AC 121 ms
43,100 KB
testcase_07 AC 130 ms
43,392 KB
testcase_08 AC 133 ms
43,332 KB
testcase_09 AC 129 ms
43,360 KB
testcase_10 AC 129 ms
43,488 KB
testcase_11 AC 120 ms
43,196 KB
testcase_12 AC 79 ms
39,160 KB
testcase_13 AC 115 ms
43,020 KB
testcase_14 AC 116 ms
42,896 KB
testcase_15 AC 114 ms
41,812 KB
testcase_16 AC 104 ms
40,932 KB
testcase_17 AC 115 ms
41,624 KB
testcase_18 AC 52 ms
36,948 KB
testcase_19 AC 53 ms
36,652 KB
testcase_20 AC 132 ms
43,628 KB
testcase_21 AC 131 ms
43,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        char s[]=bu.readLine().toCharArray();

        int n=s.length,i; long p2[]=new long[n+1],p11[]=new long[n+1],M=998244353;
        p2[0]=1; p11[0]=1;
        for(i=1;i<=n;i++)
        {
            p2[i]=p2[i-1]*2%M;
            p11[i]=p11[i-1]*11%M;
        }

        long ans=0;
        for(i=0;i<n;i++)
        ans=(ans+1l*p2[i]*p11[n-i-1]%M*(s[i]-'0')%M)%M;
        System.out.println(ans);
    }
}
0