結果

問題 No.1580 I like Logarithm!
ユーザー tentententen
提出日時 2021-07-06 11:00:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 1,587 bytes
コンパイル時間 2,081 ms
コンパイル使用メモリ 77,852 KB
実行使用メモリ 52,092 KB
最終ジャッジ日時 2024-07-01 12:06:24
合計ジャッジ時間 7,804 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,008 KB
testcase_01 AC 54 ms
50,092 KB
testcase_02 AC 54 ms
50,000 KB
testcase_03 AC 54 ms
49,740 KB
testcase_04 AC 53 ms
50,136 KB
testcase_05 AC 54 ms
49,732 KB
testcase_06 AC 87 ms
50,808 KB
testcase_07 AC 124 ms
51,832 KB
testcase_08 AC 55 ms
50,348 KB
testcase_09 AC 69 ms
50,856 KB
testcase_10 AC 73 ms
50,672 KB
testcase_11 AC 98 ms
51,364 KB
testcase_12 AC 103 ms
51,512 KB
testcase_13 AC 95 ms
51,688 KB
testcase_14 AC 124 ms
51,924 KB
testcase_15 AC 104 ms
51,384 KB
testcase_16 AC 53 ms
50,292 KB
testcase_17 AC 53 ms
49,956 KB
testcase_18 AC 54 ms
50,048 KB
testcase_19 AC 54 ms
50,192 KB
testcase_20 AC 53 ms
49,872 KB
testcase_21 AC 53 ms
50,076 KB
testcase_22 AC 54 ms
50,356 KB
testcase_23 AC 53 ms
50,088 KB
testcase_24 AC 53 ms
50,056 KB
testcase_25 AC 54 ms
49,876 KB
testcase_26 AC 125 ms
51,600 KB
testcase_27 AC 124 ms
51,692 KB
testcase_28 AC 128 ms
51,864 KB
testcase_29 AC 128 ms
51,780 KB
testcase_30 AC 127 ms
51,824 KB
testcase_31 AC 129 ms
52,092 KB
testcase_32 AC 128 ms
51,940 KB
testcase_33 AC 129 ms
51,980 KB
testcase_34 AC 128 ms
51,872 KB
testcase_35 AC 123 ms
51,792 KB
testcase_36 AC 125 ms
52,020 KB
testcase_37 AC 127 ms
51,940 KB
testcase_38 AC 127 ms
51,724 KB
testcase_39 AC 157 ms
51,932 KB
testcase_40 AC 130 ms
51,676 KB
testcase_41 AC 126 ms
52,048 KB
testcase_42 AC 126 ms
51,740 KB
testcase_43 AC 125 ms
51,716 KB
testcase_44 AC 126 ms
51,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int a = sc.nextInt();
        char[] arr = sc.next().toCharArray();
        int length = arr.length;
        long ans = 0;
        long all = 0;
        for (int i = 0; i < length; i++) {
            all *= a;
            all += arr[i] - '0';
            all %= MOD;
        }
        ans += (all - pow(a, length - 1) + 1 + MOD) % MOD * (length - 1) % MOD;
        
        for (int i = 1; i < length; i++) {
            ans += (pow(a, i) - pow(a, i - 1) + MOD) % MOD * (i - 1) % 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