結果

問題 No.1161 Many Powers
ユーザー tentententen
提出日時 2020-08-17 11:38:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 841 bytes
コンパイル時間 3,478 ms
コンパイル使用メモリ 74,160 KB
実行使用メモリ 41,400 KB
最終ジャッジ日時 2024-10-11 10:55:26
合計ジャッジ時間 9,019 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,132 KB
testcase_01 AC 135 ms
41,276 KB
testcase_02 AC 133 ms
40,924 KB
testcase_03 AC 143 ms
39,672 KB
testcase_04 AC 134 ms
41,248 KB
testcase_05 AC 146 ms
41,208 KB
testcase_06 AC 145 ms
41,352 KB
testcase_07 AC 137 ms
40,876 KB
testcase_08 AC 182 ms
40,948 KB
testcase_09 AC 187 ms
40,940 KB
testcase_10 AC 145 ms
41,144 KB
testcase_11 AC 166 ms
41,136 KB
testcase_12 AC 148 ms
40,924 KB
testcase_13 AC 187 ms
40,936 KB
testcase_14 AC 213 ms
41,144 KB
testcase_15 AC 205 ms
41,304 KB
testcase_16 AC 225 ms
41,332 KB
testcase_17 AC 191 ms
41,324 KB
testcase_18 AC 173 ms
41,280 KB
testcase_19 AC 154 ms
41,332 KB
testcase_20 AC 221 ms
41,184 KB
testcase_21 AC 157 ms
40,936 KB
testcase_22 AC 222 ms
41,400 KB
testcase_23 AC 125 ms
41,216 KB
testcase_24 AC 130 ms
41,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long a = sc.nextLong();
        long b = sc.nextLong();
        int c = sc.nextInt();
        long div = a / c % c;
        long mod = a % c;
        long ans = 0;
        for (int i = 1; i < c; i++) {
            if (i <= mod) {
                ans += powMod(i, b, c) * (div + 1) % c;
            } else {
                ans += powMod(i, b, c) * div % c;
            }
            ans %= c;
        }
        System.out.println(ans);
   }
   
   static long powMod(long x, long y, long mod) {
       if (y == 0) {
           return 1;
       } else if (y % 2 == 0) {
           return powMod(x * x % mod, y / 2, mod);
       } else {
           return powMod(x, y - 1, mod) * x % mod;
       }
   }
}
0