結果

問題 No.1161 Many Powers
ユーザー tentententen
提出日時 2024-02-06 11:52:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 1,667 bytes
コンパイル時間 2,391 ms
コンパイル使用メモリ 80,968 KB
実行使用メモリ 39,152 KB
最終ジャッジ日時 2024-09-28 11:59:08
合計ジャッジ時間 6,494 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
38,036 KB
testcase_01 AC 74 ms
38,272 KB
testcase_02 AC 71 ms
38,044 KB
testcase_03 AC 77 ms
38,564 KB
testcase_04 AC 73 ms
38,120 KB
testcase_05 AC 96 ms
38,516 KB
testcase_06 AC 94 ms
38,512 KB
testcase_07 AC 73 ms
38,572 KB
testcase_08 AC 133 ms
38,804 KB
testcase_09 AC 136 ms
38,904 KB
testcase_10 AC 112 ms
39,084 KB
testcase_11 AC 124 ms
38,560 KB
testcase_12 AC 114 ms
38,504 KB
testcase_13 AC 146 ms
38,708 KB
testcase_14 AC 174 ms
39,072 KB
testcase_15 AC 167 ms
38,944 KB
testcase_16 AC 185 ms
39,032 KB
testcase_17 AC 154 ms
39,152 KB
testcase_18 AC 134 ms
38,552 KB
testcase_19 AC 112 ms
38,768 KB
testcase_20 AC 184 ms
38,908 KB
testcase_21 AC 113 ms
38,684 KB
testcase_22 AC 178 ms
38,400 KB
testcase_23 AC 73 ms
38,012 KB
testcase_24 AC 73 ms
38,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long a = sc.nextLong();
        long b = sc.nextLong();
        int c = sc.nextInt();
        long div = a / c % c;
        long mod = a % c;
        long ans = IntStream.range(1, c).mapToLong(i -> pow(i, b, c) * (i <= mod ? div + 1 : div) % c)
            .reduce(0, (x, y) -> (x + y) % c);
        System.out.println(ans);
    }
    
    static long pow(long x, long p, int mod) {
        if (p == 0) {
            return 1;
        } else if (p % 2 == 0) {
            return pow(x * x % mod, p / 2, mod);
        } else {
            return pow(x, p - 1, mod) * x % mod;
        }
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0