結果

問題 No.1620 Substring Sum
ユーザー tentententen
提出日時 2021-07-26 20:51:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 1,320 bytes
コンパイル時間 2,713 ms
コンパイル使用メモリ 77,948 KB
実行使用メモリ 41,080 KB
最終ジャッジ日時 2024-07-22 11:57:03
合計ジャッジ時間 7,138 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,708 KB
testcase_01 AC 53 ms
36,604 KB
testcase_02 AC 55 ms
36,864 KB
testcase_03 AC 53 ms
36,708 KB
testcase_04 AC 200 ms
39,480 KB
testcase_05 AC 223 ms
40,852 KB
testcase_06 AC 232 ms
40,744 KB
testcase_07 AC 222 ms
40,716 KB
testcase_08 AC 226 ms
40,852 KB
testcase_09 AC 224 ms
40,996 KB
testcase_10 AC 191 ms
41,000 KB
testcase_11 AC 211 ms
40,852 KB
testcase_12 AC 107 ms
38,004 KB
testcase_13 AC 217 ms
40,936 KB
testcase_14 AC 222 ms
40,936 KB
testcase_15 AC 180 ms
40,676 KB
testcase_16 AC 146 ms
39,140 KB
testcase_17 AC 175 ms
39,572 KB
testcase_18 AC 52 ms
36,676 KB
testcase_19 AC 52 ms
36,404 KB
testcase_20 AC 220 ms
40,384 KB
testcase_21 AC 212 ms
41,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 998244353;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        char[] arr = sc.next().toCharArray();
        int length = arr.length;
        long ans = 0;
        for (int i = 0; i < length; i++) {
            ans += pow(11, length - i - 1) * (arr[i] - '0') % MOD * pow(2, i) % MOD;
            ans %= MOD;
        }
        System.out.println(ans);
    }
    
    static long pow(long x, int p) {
        if (p == 0) {
            return 1;
        } else if (p % 2 == 0) {
            return pow(x * x % MOD, p / 2);
        } else {
            return pow(x, p - 1) * x % MOD;
        }
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0