結果
問題 |
No.1161 Many Powers
|
ユーザー |
![]() |
提出日時 | 2024-02-06 11:52:54 |
言語 | Java (openjdk 23) |
結果 |
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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 23 |
ソースコード
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(); } } }