結果

問題 No.1161 Many Powers
ユーザー tentententen
提出日時 2024-07-25 15:35:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 1,748 bytes
コンパイル時間 3,036 ms
コンパイル使用メモリ 78,216 KB
実行使用メモリ 51,360 KB
最終ジャッジ日時 2024-07-25 15:35:25
合計ジャッジ時間 6,879 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,236 KB
testcase_01 AC 55 ms
50,288 KB
testcase_02 AC 55 ms
50,284 KB
testcase_03 AC 57 ms
50,548 KB
testcase_04 AC 55 ms
50,120 KB
testcase_05 AC 74 ms
51,212 KB
testcase_06 AC 73 ms
51,056 KB
testcase_07 AC 55 ms
50,444 KB
testcase_08 AC 108 ms
51,288 KB
testcase_09 AC 109 ms
50,880 KB
testcase_10 AC 86 ms
50,932 KB
testcase_11 AC 101 ms
50,984 KB
testcase_12 AC 84 ms
51,288 KB
testcase_13 AC 123 ms
51,264 KB
testcase_14 AC 155 ms
51,208 KB
testcase_15 AC 149 ms
51,092 KB
testcase_16 AC 160 ms
51,332 KB
testcase_17 AC 133 ms
51,180 KB
testcase_18 AC 111 ms
51,360 KB
testcase_19 AC 91 ms
50,964 KB
testcase_20 AC 168 ms
51,360 KB
testcase_21 AC 95 ms
51,252 KB
testcase_22 AC 162 ms
50,716 KB
testcase_23 AC 56 ms
50,144 KB
testcase_24 AC 60 ms
50,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int c;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long a = sc.nextLong();
        long b = sc.nextLong();
        c = sc.nextInt();
        long count = a / c;
        long mod = a % c;
        long ans = 0;
        for (int i = 0; i < c; i++) {
            long current = count;
            if (i <= mod) {
                current++;
            }
            ans += pow(i, b) * current % c;
            ans %= c;
        }
        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 % c, p / 2);
        } else {
            return pow(x, p - 1) * x % c;
        }
    }
}
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