結果

問題 No.1161 Many Powers
ユーザー tentententen
提出日時 2023-08-02 08:22:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 2,111 bytes
コンパイル時間 3,028 ms
コンパイル使用メモリ 88,340 KB
実行使用メモリ 40,056 KB
最終ジャッジ日時 2024-10-12 03:19:45
合計ジャッジ時間 6,105 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,212 KB
testcase_01 AC 50 ms
36,948 KB
testcase_02 AC 52 ms
36,924 KB
testcase_03 AC 55 ms
36,772 KB
testcase_04 AC 54 ms
37,144 KB
testcase_05 AC 68 ms
38,004 KB
testcase_06 AC 70 ms
37,844 KB
testcase_07 AC 53 ms
37,052 KB
testcase_08 AC 109 ms
38,016 KB
testcase_09 AC 115 ms
37,700 KB
testcase_10 AC 81 ms
38,232 KB
testcase_11 AC 98 ms
37,564 KB
testcase_12 AC 79 ms
38,100 KB
testcase_13 AC 125 ms
38,520 KB
testcase_14 AC 165 ms
39,896 KB
testcase_15 AC 158 ms
39,780 KB
testcase_16 AC 180 ms
40,020 KB
testcase_17 AC 128 ms
37,992 KB
testcase_18 AC 114 ms
37,860 KB
testcase_19 AC 91 ms
38,080 KB
testcase_20 AC 179 ms
40,056 KB
testcase_21 AC 91 ms
37,704 KB
testcase_22 AC 157 ms
38,744 KB
testcase_23 AC 51 ms
36,832 KB
testcase_24 AC 52 ms
37,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int MOD;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long a = sc.nextLong();
        long b = sc.nextLong();
        MOD = sc.nextInt();
        long[] values = new long[MOD];
        Arrays.fill(values, a / MOD % MOD);
        for (int i = 1; i <= a % MOD; i++) {
            values[i]++;
        }
        long ans = 0;
        for (int i = 0; i < MOD; i++) {
            ans += pow(i, b) * values[i];// % MOD;
            ans %= MOD;
        }
        System.out.println(ans);
    }
    
    static long pow(long x, long 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 Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0